# HG changeset patch # User Claus Gittinger # Date 1582465175 -3600 # Node ID 1531152215136f18be7412625bd06ee76f1c1c68 # Parent 0a9501d120626eba4e58da9b8eb1be80f4dcba27 #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: diff -r 0a9501d12062 -r 153115221513 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 " @@ -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 " @@ -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 "