[Pkg] The Trunk: XML-Parser-tpr.45.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Jan 9 00:30:42 UTC 2019


tim Rowledge uploaded a new version of XML-Parser to project The Trunk:
http://source.squeak.org/trunk/XML-Parser-tpr.45.mcz

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

Name: XML-Parser-tpr.45
Author: tpr
Time: 8 January 2019, 4:30:40.627647 pm
UUID: b6cfe816-cabd-439e-9775-7472c551b4c7
Ancestors: XML-Parser-ul.44

Use FileServices as the registry instead of FileList

=============== Diff against XML-Parser-ul.44 ===============

Item was changed:
  ----- Method: XMLDOMParser class>>initialize (in category 'initialize-release') -----
  initialize
  	"register the receiver in the global registries"
  	self environment
+ 		at: #FileServices
- 		at: #FileList
  		ifPresent: [:cl | cl registerFileReader: self]!

Item was changed:
  ----- Method: XMLDOMParser class>>unload (in category 'initialize-release') -----
  unload
  	"Unload the receiver from global registries"
  	self environment
+ 		at: #FileServices
- 		at: #FileList
  		ifPresent: [:cl | cl unregisterFileReader: self]!



More information about the Packages mailing list