New Warning: "Uninitialized local variable"
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpeclipse / internal / compiler / ast / AllocationExpression.java
index b1c2034..0264ea5 100644 (file)
@@ -82,9 +82,9 @@ public class AllocationExpression
                                        SyntheticArgumentBinding syntheticArgument = syntheticArguments[i];
                                        LocalVariableBinding targetLocal;
                                        if ((targetLocal = syntheticArgument.actualOuterLocalVariable) == null) continue;
-                                       if (targetLocal.declaration != null && !flowInfo.isDefinitelyAssigned(targetLocal)){
-                                               currentScope.problemReporter().uninitializedLocalVariable(targetLocal, this);
-                                       }
+//                                     if (targetLocal.declaration != null && !flowInfo.isDefinitelyAssigned(targetLocal)){
+//                                             currentScope.problemReporter().uninitializedLocalVariable(targetLocal, this);
+//                                     }
                                }
                                                
                }