Skip to content

Commit

Permalink
Merge pull request #10643 from kausthubtm/Pharo10
Browse files Browse the repository at this point in the history
Fixing selector type: RBAddMethodChange>>#class:source:contoller:
  • Loading branch information
guillep committed Dec 13, 2021
2 parents 897dd9d + baa3c05 commit 0af3506
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Refactoring-Changes/RBAddMethodChange.class.st
Expand Up @@ -48,7 +48,7 @@ RBAddMethodChange class >> compile: aString in: aBehavior classified: aProtocol
{ #category : #'instance creation' }
RBAddMethodChange class >> compile: aString in: aClass for: aController [

^ self new class: aClass source: aString contoller: aController
^ self new class: aClass source: aString controller: aController
]

{ #category : #comparing }
Expand Down Expand Up @@ -116,7 +116,7 @@ RBAddMethodChange >> class: aClass protocol: aProtocol source: aString controlle
]

{ #category : #initialization }
RBAddMethodChange >> class: aClass source: aString contoller: aController [
RBAddMethodChange >> class: aClass source: aString controller: aController [

self changeClass: aClass.
source := aString.
Expand Down

0 comments on commit 0af3506

Please sign in to comment.