Update of /cvsroot/nice/Nice/stdlib/nice/lang
In directory sc8-pr-cvs1:/tmp/cvs-serv25324/F:/nice/stdlib/nice/lang
Modified Files:
enum.nice
Log Message:
Removed equals method in enum because it's the same as the default implementation.
Index: enum.nice
===================================================================
RCS file: /cvsroot/nice/Nice/stdlib/nice/lang/enum.nice,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** enum.nice 21 Jul 2003 17:24:14 -0000 1.2
--- enum.nice 26 Jul 2003 16:18:07 -0000 1.3
***************
*** 20,23 ****
hashCode() = ordinal;
toString() = name;
- equals(that@Enum) = this == that;
}
--- 20,22 ----
|