[Nice-commit] Nice/src/nice/tools/typing PrimitiveType.java,1.3,1.4
Brought to you by:
bonniot
From: Arjan B. <ar...@us...> - 2005-01-14 18:54:04
|
Update of /cvsroot/nice/Nice/src/nice/tools/typing In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12024/F:/nice/src/nice/tools/typing Modified Files: PrimitiveType.java Log Message: Removed some dead code. Index: PrimitiveType.java =================================================================== RCS file: /cvsroot/nice/Nice/src/nice/tools/typing/PrimitiveType.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** PrimitiveType.java 31 Dec 2004 18:40:44 -0000 1.3 --- PrimitiveType.java 14 Jan 2005 18:53:53 -0000 1.4 *************** *** 166,180 **** public static TypeConstructor collectionTC; public static TypeConstructor throwableTC; - - private static Polytype throwableType; - public static Polytype throwableType() - { - if (throwableType == null) - { - throwableType = new Polytype - (Constraint.True, - Types.sureMonotype(new MonotypeConstructor(throwableTC, null))); - } - return throwableType; - } } \ No newline at end of file --- 166,168 ---- |