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:
mdb
2006-09-13 00:41:04 +00:00
parent 420b86f2db
commit 05abb4dea4
+3 -1
View File
@@ -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;