This commit is contained in:
Roman Shevchenko
2011-12-01 15:30:21 +01:00
parent 385cd5fbef
commit ae1d498062
2 changed files with 47 additions and 17 deletions

View File

@@ -1,10 +1,17 @@
/*
* Created by IntelliJ IDEA.
* User: dsl
* Date: 17.04.2002
* Time: 12:58:09
* To change template for new class use
* Code Style | Class Templates options (Tools | IDE Options).
* Copyright 2000-2011 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.intellij.refactoring;
@@ -180,7 +187,7 @@ public class MakeMethodStaticTest extends LightCodeInsightTestCase {
checkResultByFile("/refactoring/makeMethodStatic/after" + getTestName(false) + ".java");
}
private void perform(boolean addClassParameter) {
private static void perform(boolean addClassParameter) {
PsiElement element = TargetElementUtilBase.findTargetElement(myEditor, TargetElementUtilBase.ELEMENT_NAME_ACCEPTED);
assertTrue(element instanceof PsiMethod);
PsiMethod method = (PsiMethod) element;
@@ -191,7 +198,7 @@ public class MakeMethodStaticTest extends LightCodeInsightTestCase {
new Settings(true, addClassParameter ? "anObject" : null, null)).run();
}
private void performWithFields() {
private static void performWithFields() {
PsiElement element = TargetElementUtilBase.findTargetElement(myEditor, TargetElementUtilBase.ELEMENT_NAME_ACCEPTED);
assertTrue(element instanceof PsiMethod);
PsiMethod method = (PsiMethod) element;