[squeak-dev] The Trunk: PackageInfo-Base-bf.62.mcz

commits at source.squeak.org commits at source.squeak.org
Thu May 31 15:41:40 UTC 2012


Bert Freudenberg uploaded a new version of PackageInfo-Base to project The Trunk:
http://source.squeak.org/trunk/PackageInfo-Base-bf.62.mcz

==================== Summary ====================

Name: PackageInfo-Base-bf.62
Author: bf
Time: 31 May 2012, 5:41:27.878 pm
UUID: 3cdc34fb-0497-4f66-afe1-cd83a619eeaf
Ancestors: PackageInfo-Base-bf.61

Ignore empty preambles/postscripts

=============== Diff against PackageInfo-Base-bf.61 ===============

Item was changed:
  ----- Method: PackageInfo>>hasPostscript (in category 'preamble/postscript') -----
  hasPostscript
  
+ 	^ postscript notNil and: [postscript contents asString withBlanksTrimmed notEmpty]!
- 	^ postscript notNil!

Item was changed:
  ----- Method: PackageInfo>>hasPostscriptOfRemoval (in category 'preamble/postscript') -----
  hasPostscriptOfRemoval
  
+ 	^ postscriptOfRemoval notNil and: [postscriptOfRemoval contents asString withBlanksTrimmed notEmpty]!
- 	^ postscriptOfRemoval notNil!

Item was changed:
  ----- Method: PackageInfo>>hasPreamble (in category 'preamble/postscript') -----
  hasPreamble
+ 
+ 	^ preamble notNil and: [preamble contents asString withBlanksTrimmed notEmpty]!
- 	^ preamble notNil!

Item was changed:
  ----- Method: PackageInfo>>hasPreambleOfRemoval (in category 'preamble/postscript') -----
  hasPreambleOfRemoval
  
+ 	^ preambleOfRemoval notNil and: [preambleOfRemoval contents asString withBlanksTrimmed notEmpty]!
- 	^ preambleOfRemoval notNil!



More information about the Squeak-dev mailing list