Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Keller2012-01-24 22:06:50 +0000
committerMarkus Keller2012-01-24 22:06:50 +0000
commit9a70be55cbbac00d5c42fc7e609ff492205575dc (patch)
treebdc3f30ff0f826bad4322d6bdfa6ab89a951517d
parent5555d66f7f4241a1dcaa8a1ba960ecd81f1db35c (diff)
downloadeclipse.jdt.ui-9a70be55cbbac00d5c42fc7e609ff492205575dc.tar.gz
eclipse.jdt.ui-9a70be55cbbac00d5c42fc7e609ff492205575dc.tar.xz
eclipse.jdt.ui-9a70be55cbbac00d5c42fc7e609ff492205575dc.zip
Bug 369527: Potential NPEs in JDT UI codev20120124-2206
-rw-r--r--org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/MoveInstanceMethodWizard.java5
1 files changed, 1 insertions, 4 deletions
diff --git a/org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/MoveInstanceMethodWizard.java b/org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/MoveInstanceMethodWizard.java
index a20527cfd7..058ad914d3 100644
--- a/org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/MoveInstanceMethodWizard.java
+++ b/org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/MoveInstanceMethodWizard.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2011 IBM Corporation and others.
+ * Copyright (c) 2000, 2012 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -256,9 +256,6 @@ public final class MoveInstanceMethodWizard extends RefactoringWizard {
});
}
- fProcessor.setInlineDelegator(!fLeaveDelegateCheckBox.getSelection());
- fProcessor.setRemoveDelegator(!fLeaveDelegateCheckBox.getSelection());
-
handleTargetChanged(possibleTargets[0]);
Dialog.applyDialogFont(control);

Back to the top