[squeak-dev] The Trunk: Network-ul.176.mcz

commits at source.squeak.org commits at source.squeak.org
Sat Apr 2 19:33:03 UTC 2016


Levente Uzonyi uploaded a new version of Network to project The Trunk:
http://source.squeak.org/trunk/Network-ul.176.mcz

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

Name: Network-ul.176
Author: ul
Time: 2 April 2016, 9:06:31.957661 pm
UUID: 1b580a49-2663-4d5d-a659-606ba1c698de
Ancestors: Network-ul.175

Use primitiveMakeUUID when it's available in UUID >> #makeUUID. This should keep things snappier when UUIDPlugin works, and it should decrease the possibility of a UUID collision due to our poor seed generation in Random.

=============== Diff against Network-ul.175 ===============

Item was changed:
  ----- Method: UUID>>makeUUID (in category 'as yet unclassified') -----
  makeUUID
+ 
+ 	self primMakeUUID ifNil: [
+ 		UUIDGenerator default generateBytes: self forVersion: 4 ]!
- 	UUIDGenerator default generateBytes: self forVersion: 4.!



More information about the Squeak-dev mailing list