Skip to content

Commit f9d07b7

Browse files
authored
Merge pull request #16490 from melkiyasser/issue_16462
Issue 16462
2 parents c945a66 + 11c9e6f commit f9d07b7

9 files changed

+8
-166
lines changed

src/SystemCommands-MethodCommands/SycFindAndReplaceSetUpCommand.class.st

Lines changed: 0 additions & 46 deletions
This file was deleted.

src/SystemCommands-MethodCommands/SycOpenAdvancedDebuggingInMethodMenuCommand.class.st

Lines changed: 0 additions & 39 deletions
This file was deleted.

src/SystemCommands-MethodCommands/SycOpenDebuggingInMethodMenuCommand.class.st

Lines changed: 0 additions & 40 deletions
This file was deleted.

src/SystemCommands-MethodCommands/SycOpenReflectivityInMethodMenuCommand.class.st

Lines changed: 0 additions & 33 deletions
This file was deleted.

src/SystemCommands-MethodCommands/SycPushDownMethodCommand.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ I am a command to push down given methods
33
"
44
Class {
55
#name : 'SycPushDownMethodCommand',
6-
#superclass : 'SysRefactoringMethodCommand',
6+
#superclass : 'SycRefactoringMethodCommand',
77
#instVars : [
88
'refactoringScopes'
99
],

src/SystemCommands-MethodCommands/SycPushDownMethodInSomeClassesCommand.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ I am responsible for delegating execution to `RBPushDownMethodInSomeClassesDrive
55
"
66
Class {
77
#name : 'SycPushDownMethodInSomeClassesCommand',
8-
#superclass : 'SysRefactoringMethodCommand',
8+
#superclass : 'SycRefactoringMethodCommand',
99
#instVars : [
1010
'refactoringScopes'
1111
],

src/SystemCommands-MethodCommands/SycPushUpMethodCommand.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ I am a command to push up given methods
33
"
44
Class {
55
#name : 'SycPushUpMethodCommand',
6-
#superclass : 'SysRefactoringMethodCommand',
6+
#superclass : 'SycRefactoringMethodCommand',
77
#instVars : [
88
'refactoringScopes'
99
],

src/SystemCommands-MethodCommands/SysRefactoringMethodCommand.class.st renamed to src/SystemCommands-MethodCommands/SycRefactoringMethodCommand.class.st

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
Class {
2-
#name : 'SysRefactoringMethodCommand',
2+
#name : 'SycRefactoringMethodCommand',
33
#superclass : 'SycMethodCommand',
44
#category : 'SystemCommands-MethodCommands',
55
#package : 'SystemCommands-MethodCommands'
66
}
77

88
{ #category : 'execution' }
9-
SysRefactoringMethodCommand >> execute [
9+
SycRefactoringMethodCommand >> execute [
1010

1111
self executeRefactorings
1212
]
1313

1414
{ #category : 'testing' }
15-
SysRefactoringMethodCommand >> isComplexRefactoring [
15+
SycRefactoringMethodCommand >> isComplexRefactoring [
1616
^true
1717
]
1818

1919
{ #category : 'execution' }
20-
SysRefactoringMethodCommand >> prepareFullExecutionInContext: aToolContext [
20+
SycRefactoringMethodCommand >> prepareFullExecutionInContext: aToolContext [
2121
super prepareFullExecutionInContext: aToolContext.
2222
self setUpModelFromContext: aToolContext
2323
]

src/SystemCommands-MethodCommands/SycRemoveMethodsInHierarchyCommand.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ I am a command to remove given methods and the ones in the subclasses.
44
"
55
Class {
66
#name : 'SycRemoveMethodsInHierarchyCommand',
7-
#superclass : 'SysRefactoringMethodCommand',
7+
#superclass : 'SycRefactoringMethodCommand',
88
#category : 'SystemCommands-MethodCommands',
99
#package : 'SystemCommands-MethodCommands'
1010
}

0 commit comments

Comments
 (0)