[Mauischeduler-cvs_notes] CVS: mauisched/src/unm/maui Maui.java,1.7,1.8
Brought to you by:
mauisched,
mitchmurphy
|
From: Aaron S. <mau...@us...> - 2005-02-08 06:00:54
|
Update of /cvsroot/mauischeduler/mauisched/src/unm/maui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15802/src/unm/maui Modified Files: Maui.java Log Message: Java 1.5 tweak Index: Maui.java =================================================================== RCS file: /cvsroot/mauischeduler/mauisched/src/unm/maui/Maui.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** Maui.java 28 Jan 2002 07:16:18 -0000 1.7 --- Maui.java 8 Feb 2005 06:00:45 -0000 1.8 *************** *** 171,177 **** // toplevel. Construct the Properties object. Properties props = new Properties(cfgprops); ! Enumeration enum = sysprops.propertyNames(); ! while (enum.hasMoreElements()) { ! String key = (String)enum.nextElement(); props.put(key, sysprops.getProperty(key)); } --- 171,177 ---- // toplevel. Construct the Properties object. Properties props = new Properties(cfgprops); ! Enumeration enum_ = sysprops.propertyNames(); ! while (enum_.hasMoreElements()) { ! String key = (String)enum_.nextElement(); props.put(key, sysprops.getProperty(key)); } |