Skip to content

Commit

Permalink
Merge pull request #27 from dionisiydk/dev
Browse files Browse the repository at this point in the history
registryUpdateFix
  • Loading branch information
dionisiydk authored Mar 5, 2018
2 parents 22c67fd + 5732b19 commit d2c512f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ ensureSystemSubscription

SystemAnnouncer uniqueInstance weak
when: ClassRemoved, ClassAdded, ClassModificationApplied send: #handleClassChanged: to: self;
when: MethodRemoved, MethodAdded, MethodModified send: #handleMethodChange: to: self
when: MethodRemoved, MethodAdded, MethodModified send: #handleMethodChange: to: self;
when: MethodModified send: #handleOldMethodChange: to: self
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
system changes
handleMethodChange: aMethodAdded
handleMethodChange: aMethodAnnouncement

self resetIf: [ self doesMethodAffectAnnotations: aMethodAdded methodAffected]
self resetIf: [ self doesMethodAffectAnnotations: aMethodAnnouncement methodAffected]
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
system changes
handleOldMethodChange: aMethodModified

self resetIf: [ self doesMethodAffectAnnotations: aMethodModified oldMethod]

0 comments on commit d2c512f

Please sign in to comment.