Author: rlaidlaw
Date: Fri Aug  8 17:08:12 2014
New Revision: 1616832

URL: http://svn.apache.org/r1616832
Log:
OODT-741: removed static modifier from three fields in XMLValidationLayer

Modified:
    oodt/trunk/CHANGES.txt
    
oodt/trunk/filemgr/src/main/java/org/apache/oodt/cas/filemgr/validation/XMLValidationLayer.java

Modified: oodt/trunk/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/oodt/trunk/CHANGES.txt?rev=1616832&r1=1616831&r2=1616832&view=diff
==============================================================================
--- oodt/trunk/CHANGES.txt (original)
+++ oodt/trunk/CHANGES.txt Fri Aug  8 17:08:12 2014
@@ -4,6 +4,9 @@ Apache OODT Change Log
 Release 0.7 - Current Development
 -------------------------------------------- 
 
+* OODT-741 Remove static modifier from elementMap, subToSuperMap and
+  productTypeElementMap fields in XMLValidationLayer (rlaidlaw)
+
 * OODT-737 Copied over latest cmd-line-options.xml with typeName (rlaidlaw)
 
 * OODT-739 Fix File Manager unit tests (step 12) - fix test classes in

Modified: 
oodt/trunk/filemgr/src/main/java/org/apache/oodt/cas/filemgr/validation/XMLValidationLayer.java
URL: 
http://svn.apache.org/viewvc/oodt/trunk/filemgr/src/main/java/org/apache/oodt/cas/filemgr/validation/XMLValidationLayer.java?rev=1616832&r1=1616831&r2=1616832&view=diff
==============================================================================
--- 
oodt/trunk/filemgr/src/main/java/org/apache/oodt/cas/filemgr/validation/XMLValidationLayer.java
 (original)
+++ 
oodt/trunk/filemgr/src/main/java/org/apache/oodt/cas/filemgr/validation/XMLValidationLayer.java
 Fri Aug  8 17:08:12 2014
@@ -61,13 +61,13 @@ public class XMLValidationLayer implemen
             .getName());
 
     /* product type ID to element map */
-    private static HashMap<String, List<Element>> productTypeElementMap = new 
HashMap<String, List<Element>>();
+    private HashMap<String, List<Element>> productTypeElementMap = new 
HashMap<String, List<Element>>();
 
     /* sub-type to super-type map */
-    private static HashMap<String, String> subToSuperMap = new HashMap<String, 
String>();
+    private HashMap<String, String> subToSuperMap = new HashMap<String, 
String>();
 
     /* element map */
-    private static HashMap<String, Element> elementMap = new HashMap<String, 
Element>();
+    private HashMap<String, Element> elementMap = new HashMap<String, 
Element>();
 
     /*
      * URIs pointing to directories with product-type-element-map.xml and


Reply via email to