Update of /cvsroot/proxool/proxool/src/java/org/logicalcobwebs/logging/impl
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2556/src/java/org/logicalcobwebs/logging/impl
Modified Files:
SimpleLog.java
Log Message:
Renamed enum variable because of potential conflicts with JDK 1.5
Index: SimpleLog.java
===================================================================
RCS file: /cvsroot/proxool/proxool/src/java/org/logicalcobwebs/logging/impl/SimpleLog.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** SimpleLog.java 11 Mar 2003 00:02:10 -0000 1.3
--- SimpleLog.java 4 May 2005 16:02:05 -0000 1.4
***************
*** 159,165 ****
try {
// add all system props that start with the specified prefix
! Enumeration enum = System.getProperties ().propertyNames ();
! while (enum.hasMoreElements ()) {
! String name = (String) (enum.nextElement ());
if (null != name && name.startsWith (SYSTEM_PREFIX)) {
SIMLE_LOG_PROPS.setProperty (name, System.getProperty (name));
--- 159,165 ----
try {
// add all system props that start with the specified prefix
! Enumeration propertyNames = System.getProperties ().propertyNames ();
! while (propertyNames.hasMoreElements ()) {
! String name = (String) (propertyNames.nextElement ());
if (null != name && name.startsWith (SYSTEM_PREFIX)) {
SIMLE_LOG_PROPS.setProperty (name, System.getProperty (name));
|