#QUALITY by cg
authorClaus Gittinger <cg@exept.de>
Tue, 04 Oct 2016 12:26:19 +0200
changeset 20522 3f050234feeb
parent 20521 1af1367996fd
child 20523 76a818c608b3
#QUALITY by cg class: ProjectDefinition changed: #mandatoryPreRequisites_code #referencedPreRequisites_code
ProjectDefinition.st
--- a/ProjectDefinition.st	Tue Oct 04 12:23:58 2016 +0200
+++ b/ProjectDefinition.st	Tue Oct 04 12:26:19 2016 +0200
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 2006 by eXept Software AG
               All Rights Reserved
@@ -1821,7 +1819,7 @@
 
             s spaces:8.
             eachPackageID asSymbol storeOn:s.
-            reason := preRequisites at:eachPackageID ifAbsent:nil.
+            reason := preRequisites at:eachPackageID ifAbsent:[nil].
             reason notEmptyOrNil ifTrue:[
                 s nextPutAll:'    "'; nextPutAll:reason anElement; nextPut:$".
             ].
@@ -1908,7 +1906,7 @@
 
             s spaces:8.
             eachPackageID asSymbol storeOn:s.
-            reason := preRequisites at:eachPackageID ifAbsent:nil.
+            reason := preRequisites at:eachPackageID ifAbsent:[nil].
             reason notEmptyOrNil ifTrue:[
                 s nextPutAll:'    "'; nextPutAll:reason anElement; nextPut:$".
             ].