ProjectProblem.st
changeset 4556 153115221513
parent 4491 9e82adeddb41
--- a/ProjectProblem.st	Sun Feb 23 14:20:15 2020 +0100
+++ b/ProjectProblem.st	Sun Feb 23 14:39:35 2020 +0100
@@ -906,7 +906,7 @@
     cls := self klass.
     cls isNil ifTrue:[ ^ false ].
     def excludeClasses:{ cls } usingCompiler:nil.
-    UserNotification notify: ('Class removed from project. Do not forget to check in build support files!!' bindWith: className).
+    UserNotification notify: ('Class removed from project. Do not forget to checkin build support files!!').
     ^true
 !
 
@@ -1001,7 +1001,7 @@
     cls := self klass.
     cls isNil ifTrue:[ ^ false ].
     def excludeClasses:{ cls } usingCompiler:nil.
-    UserNotification notify: ('Class removed from project. Do not forget to check in build support files!!' bindWith: className).
+    UserNotification notify: ('Class removed from project. Do not forget to checkin build support files!!').
     ^true
 !
 
@@ -1133,7 +1133,7 @@
     ] ifFalse:[
         def includeClasses:(Array with: cls) usingCompiler: nil.
     ].
-    UserNotification notify: ('Class added. Do not forget to check in build support files!!' bindWith: className).
+    UserNotification notify: ('Class added. Do not forget to checkin build support files!!').
     ^true
 
     "Created: / 26-07-2012 / 10:41:22 / Jan Vrany <jan.vrany@fit.cvut.cz>"
@@ -1215,7 +1215,7 @@
     ] ifFalse:[
         def includeClasses:(Array with: cls) usingCompiler: nil.
     ].
-    UserNotification notify: ('Class added. Do not forget to check in build support files!!' bindWith: className).
+    UserNotification notify: ('Class added. Do not forget to checkin build support files!!').
     ^true
 
     "Created: / 26-07-2012 / 10:41:22 / Jan Vrany <jan.vrany@fit.cvut.cz>"
@@ -1238,7 +1238,7 @@
 
     superclassDef includeClasses:(Array with: superclass) usingCompiler: nil.
 
-    UserNotification notify: ('Superclass added/changed. Do not forget to check in build support files!!' bindWith: className).
+    UserNotification notify: ('Superclass added/changed. Do not forget to checkin build support files!!').
     ^true
 !
 
@@ -1352,7 +1352,7 @@
     ] ifFalse:[
         def includeClasses:(Array with: cls) usingCompiler: nil.
     ].
-    UserNotification notify: ('Class added. Do not forget to check in build support files!!' bindWith: className).
+    UserNotification notify: ('Class added. Do not forget to checkin build support files!!').
     ^true
 
     "Created: / 26-07-2012 / 10:41:22 / Jan Vrany <jan.vrany@fit.cvut.cz>"