#REFACTORING by exept
authorClaus Gittinger <cg@exept.de>
Sun, 23 Feb 2020 14:39:35 +0100
changeset 4556 153115221513
parent 4555 0a9501d12062
child 4557 069040b49bec
#REFACTORING by exept class: ProjectProblem::ClassIsCompiledButSuperclassIsAutoloaded changed: #doIncludeInProjectAsAutoloaded: #doMakeSuperclassCompiled class: ProjectProblem::ClassListedButDoesNotExist changed: #doRemoveClassFromProjectDefinition class: ProjectProblem::ClassListedButInOtherPackage changed: #doRemoveClassFromProjectDefinition class: ProjectProblem::ClassNotListed changed: #doIncludeInProjectAsAutoloaded: class: ProjectProblem::ClassShouldNotBeInPackage changed: #doIncludeInProjectAsAutoloaded:
ProjectProblem.st
--- 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>"