### Eclipse Workspace Patch 1.0 #P org.eclipse.jdt.ui Index: core extension/org/eclipse/jdt/internal/corext/dom/ASTNodes.java =================================================================== RCS file: /cvsroot/eclipse/org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/dom/ASTNodes.java,v retrieving revision 1.99 diff -u -r1.99 ASTNodes.java --- core extension/org/eclipse/jdt/internal/corext/dom/ASTNodes.java 23 Feb 2009 13:32:18 -0000 1.99 +++ core extension/org/eclipse/jdt/internal/corext/dom/ASTNodes.java 17 Jun 2009 10:35:40 -0000 @@ -450,7 +450,7 @@ ASTNode parent= location.getParent(); StructuralPropertyDescriptor locationInParent= location.getLocationInParent(); - if (locationInParent instanceof ChildListPropertyDescriptor) { + if (locationInParent instanceof ChildListPropertyDescriptor && locationInParent != InfixExpression.EXTENDED_OPERANDS_PROPERTY) { // e.g. argument lists of MethodInvocation, ClassInstanceCreation, ... return false; } else if (locationInParent == VariableDeclarationFragment.INITIALIZER_PROPERTY) {