Message |
Update of /usr/cvsroot/CBIT/src/org/paneris/cbitlog/model In directory rama.paneris.org:/tmp/cvs-serv31948 Modified Files: EnquiryCategory.java Log Message: Unneccessary cast Index: EnquiryCategory.java =================================================================== RCS file: /usr/cvsroot/CBIT/src/org/paneris/cbitlog/model/EnquiryCategory.java,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- EnquiryCategory.java 23 Jul 2003 15:14:25 -0000 1.9 +++ EnquiryCategory.java 23 May 2007 19:53:24 -0000 1.10 @@ -66,7 +66,7 @@ return t.newRow(this, null); } else { // System.err.println("Tested 201b"); - return t.getRow(this, (Enquiry)o); + return t.getRow(this, o); } }
|