[Nice-commit] Nice/src/bossa/syntax NiceClass.java,1.78,1.79
Brought to you by:
bonniot
From: <bo...@us...> - 2004-03-04 13:09:51
|
Update of /cvsroot/nice/Nice/src/bossa/syntax In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31840/src/bossa/syntax Modified Files: NiceClass.java Log Message: Mino: removed unused parameter. Index: NiceClass.java =================================================================== RCS file: /cvsroot/nice/Nice/src/bossa/syntax/NiceClass.java,v retrieving revision 1.78 retrieving revision 1.79 diff -C2 -d -r1.78 -r1.79 *** NiceClass.java 25 Feb 2004 11:23:29 -0000 1.78 --- NiceClass.java 4 Mar 2004 12:56:28 -0000 1.79 *************** *** 661,665 **** */ private static List getNativeConstructorParameters ! (TypeConstructor tc, List constraints, TypeSymbol[] binders) { List constructors = TypeConstructors.getConstructors(tc); --- 661,665 ---- */ private static List getNativeConstructorParameters ! (TypeConstructor tc, List constraints) { List constructors = TypeConstructors.getConstructors(tc); *************** *** 741,745 **** List res; if (sup == null) ! res = getNativeConstructorParameters(supTC, constraints, binders); else res = sup.getParentConstructorParameters(constraints, binders); --- 741,745 ---- List res; if (sup == null) ! res = getNativeConstructorParameters(supTC, constraints); else res = sup.getParentConstructorParameters(constraints, binders); |