many changes and fixes
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / FieldDeclaration.java
index 71fc91e..61d4c8b 100644 (file)
@@ -77,7 +77,7 @@ public class FieldDeclaration extends Statement implements Outlineable {
    * @return the variables from outside
    */
   public List getOutsideVariable() {
-    return new ArrayList();
+    return new ArrayList(1);
   }
 
   /**
@@ -85,7 +85,7 @@ public class FieldDeclaration extends Statement implements Outlineable {
    * @return the variables from we change value
    */
   public List getModifiedVariable() {
-    return new ArrayList();
+    return new ArrayList(1);
   }
 
   /**
@@ -93,6 +93,6 @@ public class FieldDeclaration extends Statement implements Outlineable {
    * @return the variables used
    */
   public List getUsedVariable() {
-    return new ArrayList();
+    return new ArrayList(1);
   }
 }