]> source.dussan.org Git - aspectj.git/commitdiff
findbugs: made final
authoraclement <aclement>
Fri, 22 Aug 2008 19:26:44 +0000 (19:26 +0000)
committeraclement <aclement>
Fri, 22 Aug 2008 19:26:44 +0000 (19:26 +0000)
weaver/src/org/aspectj/weaver/patterns/SimpleScope.java

index 64d08a3911e7197478c48328be3fb1bd55735e6e..08e3e70f3f293374418658ef24dee2fc07109083 100644 (file)
@@ -31,7 +31,13 @@ public class SimpleScope implements IScope {
 
        private String[] importedPrefixes = javaLangPrefixArray;
        private String[] importedNames = ZERO_STRINGS;
-    
+       private static final String[] ZERO_STRINGS = new String[0];
+       
+       private static final String[] javaLangPrefixArray =
+               new String[] { "java.lang.", };
+
+
+       
     public SimpleScope(World world, FormalBinding[] bindings) {
         super();
         this.world = world;
@@ -106,11 +112,6 @@ public class SimpleScope implements IScope {
        
        // ---- fields
        
-       public static final String[] ZERO_STRINGS = new String[0];
-       
-       public static final String[] javaLangPrefixArray =
-               new String[] { "java.lang.", };
-
 
 
        public ISourceLocation makeSourceLocation(IHasPosition location) {