Author: mrglavas
Date: Sat Jun 21 16:43:53 2008
New Revision: 670274
URL: http://svn.apache.org/viewvc?rev=670274&view=rev
Log:
Making a few static fields private.
Modified:
xml/commons/trunk/java/external/src/javax/xml/parsers/FactoryFinder.java
xml/commons/trunk/java/external/src/javax/xml/transform/FactoryFinder.java
Modified: xml/commons/trunk/java/external/src/javax/xml/parsers/FactoryFinder.java
URL: http://svn.apache.org/viewvc/xml/commons/trunk/java/external/src/javax/xml/parsers/FactoryFinder.java?rev=670274&r1=670273&r2=670274&view=diff
==============================================================================
--- xml/commons/trunk/java/external/src/javax/xml/parsers/FactoryFinder.java (original)
+++ xml/commons/trunk/java/external/src/javax/xml/parsers/FactoryFinder.java Sat Jun 21 16:43:53
2008
@@ -42,8 +42,8 @@
/** Temp debug code - this will be removed after we test everything
*/
private static boolean debug = false;
- static Properties cacheProps= new Properties();
- static boolean firstTime = true;
+ private static Properties cacheProps= new Properties();
+ private static boolean firstTime = true;
/**
* Default columns per line.
Modified: xml/commons/trunk/java/external/src/javax/xml/transform/FactoryFinder.java
URL: http://svn.apache.org/viewvc/xml/commons/trunk/java/external/src/javax/xml/transform/FactoryFinder.java?rev=670274&r1=670273&r2=670274&view=diff
==============================================================================
--- xml/commons/trunk/java/external/src/javax/xml/transform/FactoryFinder.java (original)
+++ xml/commons/trunk/java/external/src/javax/xml/transform/FactoryFinder.java Sat Jun 21
16:43:53 2008
@@ -42,8 +42,8 @@
/** Temp debug code - this will be removed after we test everything
*/
private static boolean debug = false;
- static Properties cacheProps= new Properties();
- static boolean firstTime = true;
+ private static Properties cacheProps= new Properties();
+ private static boolean firstTime = true;
/**
* Default columns per line.
|