Allow IntTuple to be serialized.
git-svn-id: https://samskivert.googlecode.com/svn/trunk@1903 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
@@ -20,11 +20,13 @@
|
|||||||
|
|
||||||
package com.samskivert.util;
|
package com.samskivert.util;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A simple object that holds a reference to two ints.
|
* A simple object that holds a reference to two ints.
|
||||||
*/
|
*/
|
||||||
public class IntTuple
|
public class IntTuple
|
||||||
implements Comparable<IntTuple>
|
implements Comparable<IntTuple>, Serializable
|
||||||
{
|
{
|
||||||
/** The left int. */
|
/** The left int. */
|
||||||
public int left;
|
public int left;
|
||||||
|
|||||||
Reference in New Issue
Block a user