[Nice-commit] Nice/src/bossa/modules JarCompiledContent.java,1.7,1.8
Brought to you by:
bonniot
From: Arjan B. <ar...@us...> - 2004-09-17 16:31:50
|
Update of /cvsroot/nice/Nice/src/bossa/modules In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1020/F:/nice/src/bossa/modules Modified Files: JarCompiledContent.java Log Message: Don't use 'enum' as identifier. Index: JarCompiledContent.java =================================================================== RCS file: /cvsroot/nice/Nice/src/bossa/modules/JarCompiledContent.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** JarCompiledContent.java 23 Jul 2004 21:55:51 -0000 1.7 --- JarCompiledContent.java 17 Sep 2004 16:31:36 -0000 1.8 *************** *** 112,119 **** String pkgPrefix = pkg.getName().replace('.', '/') + "/"; ! java.util.Enumeration enum = jar.entries(); ! while(enum.hasMoreElements()) { ! JarEntry e = (JarEntry) enum.nextElement(); String fullname = e.getName(); if (fullname.startsWith(pkgPrefix) --- 112,119 ---- String pkgPrefix = pkg.getName().replace('.', '/') + "/"; ! java.util.Enumeration en = jar.entries(); ! while(en.hasMoreElements()) { ! JarEntry e = (JarEntry) en.nextElement(); String fullname = e.getName(); if (fullname.startsWith(pkgPrefix) |