From 70401b0c4439d0201aeeb30aca6efd38890937d1 Mon Sep 17 00:00:00 2001 From: anna Date: Thu, 12 Jan 2012 17:44:25 +0100 Subject: [PATCH] restore and deprecate api for a while --- .../introduce/inplace/InplaceVariableIntroducer.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/platform/lang-impl/src/com/intellij/refactoring/introduce/inplace/InplaceVariableIntroducer.java b/platform/lang-impl/src/com/intellij/refactoring/introduce/inplace/InplaceVariableIntroducer.java index 3e96ed59c611..1b111dc7ba8c 100644 --- a/platform/lang-impl/src/com/intellij/refactoring/introduce/inplace/InplaceVariableIntroducer.java +++ b/platform/lang-impl/src/com/intellij/refactoring/introduce/inplace/InplaceVariableIntroducer.java @@ -77,6 +77,11 @@ public abstract class InplaceVariableIntroducer extends In initOccurrencesMarkers(); } + @Deprecated + public boolean performInplaceRename() { + return performInplaceRefactoring(null); + } + @Override protected boolean shouldSelectAll() { return true;