[Nice-commit] Nice/src/gnu/bytecode ClassType.java,1.17,1.18
Brought to you by:
bonniot
From: <bo...@us...> - 2003-09-30 13:20:00
|
Update of /cvsroot/nice/Nice/src/gnu/bytecode In directory sc8-pr-cvs1:/tmp/cvs-serv21237/src/gnu/bytecode Modified Files: ClassType.java Log Message: Do not generate a calls to an abstract method. Index: ClassType.java =================================================================== RCS file: /cvsroot/nice/Nice/src/gnu/bytecode/ClassType.java,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** ClassType.java 28 Aug 2003 12:46:37 -0000 1.17 --- ClassType.java 30 Sep 2003 13:19:54 -0000 1.18 *************** *** 605,609 **** { Method method = cl.getDeclaredMethod(name, arg_types); ! if (method != null) return method; --- 605,609 ---- { Method method = cl.getDeclaredMethod(name, arg_types); ! if (method != null && (! (concrete && method.isAbstract()))) return method; |