summaryrefslogtreecommitdiffstats
path: root/sandbox
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2005-07-07 12:12:44 +0000
committerOliver Bolte <obo@openoffice.org>2005-07-07 12:12:44 +0000
commit02273dff930597cdb15a98d00ade1ecfbceec629 (patch)
tree4ea54e0f92a185ffc90cf8df923e6b82abdd464d /sandbox
parentINTEGRATION: CWS vcl41 (1.48.124); FILE MERGED (diff)
downloadcore-02273dff930597cdb15a98d00ade1ecfbceec629.tar.gz
core-02273dff930597cdb15a98d00ade1ecfbceec629.zip
INTEGRATION: CWS jl22 (1.11.10); FILE MERGED
2005/06/20 15:18:19 jl 1.11.10.1: #44412#enum identifyer renamed. Caused breakage with jdk15
Diffstat (limited to 'sandbox')
-rw-r--r--sandbox/com/sun/star/lib/sandbox/ClassContextImpl.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/sandbox/com/sun/star/lib/sandbox/ClassContextImpl.java b/sandbox/com/sun/star/lib/sandbox/ClassContextImpl.java
index b4c27156e3da..822f0d8552df 100644
--- a/sandbox/com/sun/star/lib/sandbox/ClassContextImpl.java
+++ b/sandbox/com/sun/star/lib/sandbox/ClassContextImpl.java
@@ -2,9 +2,9 @@
*
* $RCSfile: ClassContextImpl.java,v $
*
- * $Revision: 1.11 $
+ * $Revision: 1.12 $
*
- * last change: $Author: kz $ $Date: 2004-12-16 11:41:46 $
+ * last change: $Author: obo $ $Date: 2005-07-07 13:12:44 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -301,10 +301,10 @@ final class ClassContextImpl extends ClassLoader implements ClassContext {
m_class_path_jars = class_path_jars;
}
- java.util.Enumeration enum = m_class_path_jars.elements();
- while (enum.hasMoreElements())
+ java.util.Enumeration enum_elements = m_class_path_jars.elements();
+ while (enum_elements.hasMoreElements())
{
- ClassContext context = (ClassContext)enum.nextElement();
+ ClassContext context = (ClassContext)enum_elements.nextElement();
try
{
xClass = context.loadClass( className );