Skip to content

Commit

Permalink
remove deprecated extraction refactorings
Browse files Browse the repository at this point in the history
Removes the old implementations of ExtractMethod and ExtractLocal (replaced by the more generic ExtractValue) and their integrations in the quick assist menu.
  • Loading branch information
Luegg committed Jun 5, 2014
1 parent 6645149 commit 1eb07fe
Show file tree
Hide file tree
Showing 6 changed files with 1 addition and 127 deletions.
4 changes: 0 additions & 4 deletions org.scala-ide.sdt.core/plugin.xml
Expand Up @@ -1058,10 +1058,6 @@
categoryId="org.scalaide.ui.menu.refactoring"
id="org.scalaide.refactoring.MoveClass"
name="Move Class/Object/Trait"/>
<command
categoryId="org.scalaide.ui.menu.refactoring"
id="org.scalaide.refactoring.ExtractMethod"
name="Extract Method"/>
<command
categoryId="org.scalaide.ui.menu.refactoring"
id="org.scalaide.refactoring.ExtractLocal"
Expand Down

This file was deleted.

This file was deleted.

Expand Up @@ -66,10 +66,8 @@ object ScalaQuickAssistProcessor {
private final val ImplicitArgFound = "(?s)Implicit arguments found: (.*)".r

val availableAssists = Seq(
ExtractLocalProposal,
ExpandCaseClassBindingProposal,
InlineLocalProposal,
ExtractMethodProposal
InlineLocalProposal
)
}

This file was deleted.

This file was deleted.

0 comments on commit 1eb07fe

Please sign in to comment.