changed to unmaintained
[aaf/authz.git] / auth / auth-core / src / main / java / org / onap / aaf / auth / rserv / Version.java
index adf0538..c2ffea6 100644 (file)
@@ -7,9 +7,9 @@
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
- * 
+ *
  *      http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -24,7 +24,7 @@ package org.onap.aaf.auth.rserv;
 
 /**
  * Analyze and hold Version information for Code
- * 
+ *
  * @author Jonathan
  *
  */
@@ -32,7 +32,7 @@ public class Version {
     private Object[] parts;
 
     public Version(String v) {
-        String sparts[] = v.split("\\.");
+        String[] sparts = v.split("\\.");
         parts = new Object[sparts.length];
         System.arraycopy(sparts, 0, parts, 0, sparts.length);
         if (parts.length>1) { // has at least a minor
@@ -67,8 +67,8 @@ public class Version {
         }
         return false;
     }
-    
-    
+
+
     /* (non-Javadoc)
      * @see java.lang.Object#hashCode()
      */