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 / InnerEmulationDependency.java
index 0a7071d..9f67057 100644 (file)
  *******************************************************************************/
 package net.sourceforge.phpdt.internal.compiler.lookup;
 
-public class InnerEmulationDependency{
+public class InnerEmulationDependency {
 
        public BlockScope scope;
+
        public boolean wasEnclosingInstanceSupplied;
-    
-       public InnerEmulationDependency(BlockScope scope, boolean wasEnclosingInstanceSupplied) {
+
+       public InnerEmulationDependency(BlockScope scope,
+                       boolean wasEnclosingInstanceSupplied) {
                this.scope = scope;
                this.wasEnclosingInstanceSupplied = wasEnclosingInstanceSupplied;
        }