[Nice-commit] Nice/src/bossa/syntax MethodContainer.java,1.13,1.14
Brought to you by:
bonniot
From: <bo...@pr...> - 2004-01-27 15:04:34
|
Update of /cvsroot/nice/Nice/src/bossa/syntax In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29771/src/bossa/syntax Modified Files: MethodContainer.java Log Message: Fixed a typing bug for abstract interfaces with type parameters. Index: MethodContainer.java =================================================================== RCS file: /cvsroot/nice/Nice/src/bossa/syntax/MethodContainer.java,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** MethodContainer.java 15 Nov 2003 17:25:47 -0000 1.13 --- MethodContainer.java 27 Jan 2004 15:03:26 -0000 1.14 *************** *** 109,112 **** --- 109,116 ---- else this.typeParameters = typeParameters; + + // The type parameters have nullness markers. + for (int i = 0; i < typeParameters.length; i++) + nice.tools.code.Types.makeMarkedType(typeParameters[i]); } |