extensions.st
changeset 315 0a4845a0c211
parent 311 368ff7243ade
child 369 b268b5cfa98c
child 395 25ed27eaeaae
child 872 aef8cc9059c8
--- a/extensions.st	Fri Dec 12 15:06:00 2014 +0000
+++ b/extensions.st	Mon Dec 15 20:46:27 2014 +0000
@@ -302,6 +302,7 @@
     changes := self changes.
     changes notEmptyOrNil ifTrue:[
         fixer fix
+            rule: self;
             label:'Change EOL comments to standard Smalltalk comments';
             action: [ fixer apply:
                 ((ChangeSet withAll:changes) name: self name)
@@ -309,7 +310,7 @@
     ]
 
     "Created: / 01-02-2012 / 12:11:43 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified (format): / 17-10-2014 / 00:42:11 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 15-12-2014 / 16:46:46 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !RBLintRule methodsFor:'accessing'!
@@ -388,14 +389,16 @@
 
     changes := self changes.
     changes notEmptyOrNil ifTrue:[
-	fixer fix
-	    label:'Rewrite the code';
-	    action: [ fixer apply:
-		((ChangeSet withAll:self changes) name: self name)
-	    ].
+        fixer fix
+            rule: self;    
+            label:'Rewrite the code';
+            action: [ fixer apply:
+                ((ChangeSet withAll:self changes) name: self name)
+            ].
     ]
 
     "Created: / 01-02-2012 / 12:11:43 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 15-12-2014 / 16:46:53 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !ReturnNode methodsFor:'enumeration'!