A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / lookup / SyntheticFieldBinding.java
index 4206652..5468b8b 100644 (file)
@@ -14,8 +14,10 @@ import net.sourceforge.phpdt.internal.compiler.impl.Constant;
 
 public class SyntheticFieldBinding extends FieldBinding {
        public int index;
-public SyntheticFieldBinding(char[] name, TypeBinding type, int modifiers, ReferenceBinding declaringClass, Constant constant, int index) {
-       super(name, type, modifiers, declaringClass, constant);
-       this.index = index;
-}
+
+       public SyntheticFieldBinding(char[] name, TypeBinding type, int modifiers,
+                       ReferenceBinding declaringClass, Constant constant, int index) {
+               super(name, type, modifiers, declaringClass, constant);
+               this.index = index;
+       }
 }