The Trunk: Monticello-nice.394.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Monticello-nice.394.mcz

commits-2
Nicolas Cellier uploaded a new version of Monticello to project The Trunk:
http://source.squeak.org/trunk/Monticello-nice.394.mcz

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

Name: Monticello-nice.394
Author: nice
Time: 11 June 2010, 10:34:54.674 pm
UUID: bbef6201-1cfe-384f-ac90-d793b62b318b
Ancestors: Monticello-ar.393

Simplify code using String>>#lines

=============== Diff against Monticello-ar.393 ===============

Item was changed:
  ----- Method: MCFileBasedRepository>>notifyList (in category 'as yet unclassified') -----
  notifyList
- | list |
  (self allFileNames includes: 'notify') ifFalse: [^ #()].
  ^ self readStreamForFileNamed: 'notify' do:
  [:s |
+ s upToEnd lines]!
- s upToEnd withSqueakLineEndings findTokens: (String with: Character cr)]!

Item was changed:
+ ----- Method: MCPackage>>packageInfo (in category 'accessing') -----
- ----- Method: MCPackage>>packageInfo (in category 'as yet unclassified') -----
  packageInfo
  ^ PackageInfo named: name!