clone() modernization.

git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@872 ed5b42cb-e716-0410-a449-f6a68f950b19
This commit is contained in:
Ray Greenwell
2010-01-13 18:28:28 +00:00
parent a21a692f31
commit f0eaa44cab
6 changed files with 23 additions and 25 deletions
+2 -2
View File
@@ -135,12 +135,12 @@ public class Tile // implements Cloneable
// /**
// * Creates a shallow copy of this tile object.
// */
// public Object clone ()
// public Tile clone ()
// {
// try {
// return (Tile)super.clone();
// } catch (CloneNotSupportedException cnse) {
// throw new RuntimeException(cnse);
// throw new AssertionError(cnse);
// }
// }