X-Git-Url: http://secure.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/internal/compiler/ast/AllocationExpression.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/internal/compiler/ast/AllocationExpression.java index b1c2034..0264ea5 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/internal/compiler/ast/AllocationExpression.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/internal/compiler/ast/AllocationExpression.java @@ -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); +// } } }