The Trunk: Tools-ul.273.mcz

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

The Trunk: Tools-ul.273.mcz

commits-2
Levente Uzonyi uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-ul.273.mcz

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

Name: Tools-ul.273
Author: ul
Time: 12 October 2010, 3:32:06.256 am
UUID: 10689206-4812-1f4b-8587-0f46e3c8dff5
Ancestors: Tools-cmm.272

- moved Workspace >> #hasBindingThatBeginsWith: to ShoutCore

=============== Diff against Tools-cmm.272 ===============

Item was removed:
- ----- Method: Workspace>>hasBindingThatBeginsWith: (in category 'binding') -----
- hasBindingThatBeginsWith: aString
-
- bindings ifNil: [ ^false ].
- bindings keysDo: [ :each |
- (each beginsWith: aString) ifTrue: [ ^true ] ].
- ^false!