[Pkg] DeltaStreams: DeltaStreams-Model-gk.16.mcz

squeak-dev-noreply at lists.squeakfoundation.org squeak-dev-noreply at lists.squeakfoundation.org
Sun Sep 6 14:42:57 UTC 2009


A new version of DeltaStreams-Model was added to project DeltaStreams:
http://www.squeaksource.com/DeltaStreams/DeltaStreams-Model-gk.16.mcz

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

Name: DeltaStreams-Model-gk.16
Author: gk
Time: 6 September 2009, 4:42:37 am
UUID: b629730b-281f-45c1-a13e-379cd952f077
Ancestors: DeltaStreams-Model-gk.15

Removed unused class side stuff.

=============== Diff against DeltaStreams-Model-gk.15 ===============

Item was removed:
- ----- Method: DSClassCategoryChange class>>className:superclassName:instVarNames:classVarNames:poolDictionaryNames:category:type:classInstVarNames:comment:stamp:oldCategory: (in category 'instance creation') -----
- className: aClassName
- superclassName: superclassName
- instVarNames: instVarNames
- classVarNames: classVarNames
- poolDictionaryNames: poolDictionaryNames
- category: aCategory
- type: typeOfClass
- classInstVarNames: metaInstVarNames
- comment: classComment
- stamp: commentStamp
- oldCategory: oldCategory
- 						
- 	^(self className: aClassName)
- 		superclassName: superclassName;
- 		instVarNames: instVarNames;
- 		classVarNames: classVarNames;
- 		poolDictionaryNames: poolDictionaryNames;
- 		category: aCategory;
- 		type: typeOfClass;
- 		classInstVarNames: metaInstVarNames;
- 		comment: classComment;
- 		stamp: commentStamp;
- 		oldCategory: oldCategory;
- 		yourself
- !

Item was removed:
- ----- Method: DSClassNameChange class>>className:superclassName:instVarNames:classVarNames:poolDictionaryNames:category:type:classInstVarNames:comment:stamp:oldName: (in category 'instance creation') -----
- className: aClassName
- superclassName: superclassName
- instVarNames: instVarNames
- classVarNames: classVarNames
- poolDictionaryNames: poolDictionaryNames
- category: aCategory
- type: typeOfClass
- classInstVarNames: metaInstVarNames
- comment: classComment
- stamp: commentStamp
- oldName: oldClassName
- 						
- 	^(self className: aClassName)
- 		superclassName: superclassName;
- 		instVarNames: instVarNames;
- 		classVarNames: classVarNames;
- 		poolDictionaryNames: poolDictionaryNames;
- 		category: aCategory;
- 		type: typeOfClass;
- 		classInstVarNames: metaInstVarNames;
- 		comment: classComment;
- 		stamp: commentStamp;
- 		oldName: oldClassName;
- 		yourself
- !

Item was removed:
- ----- Method: DSClassCommentChange class>>className:superclassName:instVarNames:classVarNames:poolDictionaryNames:category:type:classInstVarNames:comment:oldComment:stamp:oldStamp: (in category 'as yet unclassified') -----
- className: aClassName
- superclassName: superclassName
- instVarNames: instVarNames
- classVarNames: classVarNames
- poolDictionaryNames: poolDictionaryNames
- category: aCategory
- type: typeOfClass
- classInstVarNames: metaInstVarNames
- comment: classComment
- oldComment: oldComment
- stamp: commentStamp
- oldStamp: oldStamp
- 						
- 	^(self className: aClassName)
- 		superclassName: superclassName;
- 		instVarNames: instVarNames;
- 		classVarNames: classVarNames;
- 		poolDictionaryNames: poolDictionaryNames;
- 		category: aCategory;
- 		type: typeOfClass;
- 		classInstVarNames: metaInstVarNames;
- 		comment: classComment;
- 		stamp: commentStamp;
- 		oldComment: oldComment;
- 		oldStamp: oldStamp;
- 		yourself
- !

Item was removed:
- ----- Method: DSClassTypeChange class>>className:superclassName:instVarNames:classVarNames:poolDictionaryNames:category:type:classInstVarNames:comment:stamp:oldType: (in category 'as yet unclassified') -----
- className: aClassName
- superclassName: superclassName
- instVarNames: instVarNames
- classVarNames: classVarNames
- poolDictionaryNames: poolDictionaryNames
- category: aCategory
- type: typeOfClass
- classInstVarNames: metaInstVarNames
- comment: classComment
- stamp: commentStamp
- oldType: oldTypeOfClass
- 						
- 	^(self className: aClassName)
- 		superclassName: superclassName;
- 		instVarNames: instVarNames;
- 		classVarNames: classVarNames;
- 		poolDictionaryNames: poolDictionaryNames;
- 		category: aCategory;
- 		type: typeOfClass;
- 		classInstVarNames: metaInstVarNames;
- 		comment: classComment;
- 		stamp: commentStamp;
- 		oldType: oldTypeOfClass;
- 		yourself
- !

Item was removed:
- ----- Method: DSVarsChange class>>changing:from:to: (in category 'as yet unclassified') -----
- changing: aClass from: oldArray to: newArray
- 
- 	^(self fromClass: aClass)
- 		oldVars: oldArray;
- 		newVars: newArray;
- 		yourself!

Item was removed:
- ----- Method: DSVarsChange class>>className:superclassName:instVarNames:classVarNames:poolDictionaryNames:category:type:classInstVarNames:comment:stamp:oldVars: (in category 'as yet unclassified') -----
- className: aClassName
- superclassName: superclassName
- instVarNames: instVarNames
- classVarNames: classVarNames
- poolDictionaryNames: poolDictionaryNames
- category: aCategory
- type: typeOfClass
- classInstVarNames: metaInstVarNames
- comment: classComment
- stamp: commentStamp
- oldVars: oldVarNames
- 						
- 	^(self className: aClassName)
- 		superclassName: superclassName;
- 		instVarNames: instVarNames;
- 		classVarNames: classVarNames;
- 		poolDictionaryNames: poolDictionaryNames;
- 		category: aCategory;
- 		type: typeOfClass;
- 		classInstVarNames: metaInstVarNames;
- 		comment: classComment;
- 		stamp: commentStamp;
- 		oldVars: oldVarNames;
- 		yourself!

Item was removed:
- ----- Method: DSClassSuperclassChange class>>className:superclassName:instVarNames:classVarNames:poolDictionaryNames:category:type:classInstVarNames:comment:stamp:oldSuperclassName: (in category 'instance creation') -----
- className: aClassName
- superclassName: superclassName
- instVarNames: instVarNames
- classVarNames: classVarNames
- poolDictionaryNames: poolDictionaryNames
- category: aCategory
- type: typeOfClass
- classInstVarNames: metaInstVarNames
- comment: classComment
- stamp: commentStamp
- oldSuperclassName: oldSuperclassName
- 						
- 	^(self className: aClassName)
- 		superclassName: superclassName;
- 		instVarNames: instVarNames;
- 		classVarNames: classVarNames;
- 		poolDictionaryNames: poolDictionaryNames;
- 		category: aCategory;
- 		type: typeOfClass;
- 		classInstVarNames: metaInstVarNames;
- 		comment: classComment;
- 		stamp: commentStamp;
- 		oldSuperclassName: oldSuperclassName;
- 		yourself
- !

Item was removed:
- ----- Method: DSClassCommentChange class>>className:superclassName:instVarNames:classVarNames:poolDictionaryNames:category:type:classInstVarNames:comment:stamp:oldComment:oldStamp: (in category 'as yet unclassified') -----
- className: aClassName
- superclassName: superclassName
- instVarNames: instVarNames
- classVarNames: classVarNames
- poolDictionaryNames: poolDictionaryNames
- category: aCategory
- type: typeOfClass
- classInstVarNames: metaInstVarNames
- comment: classComment
- stamp: commentStamp
- oldComment: oldComment
- oldStamp: oldStamp
- 						
- 	^(self className: aClassName)
- 		superclassName: superclassName;
- 		instVarNames: instVarNames;
- 		classVarNames: classVarNames;
- 		poolDictionaryNames: poolDictionaryNames;
- 		category: aCategory;
- 		type: typeOfClass;
- 		classInstVarNames: metaInstVarNames;
- 		comment: classComment;
- 		stamp: commentStamp;
- 		oldComment: oldComment;
- 		oldStamp: oldStamp;
- 		yourself
- !

Item was removed:
- ----- Method: DSVarsChange class>>class:from:to: (in category 'as yet unclassified') -----
- class: aClass from: oldArray to: newArray
- 
- 	^(self class: aClass) oldVars: oldArray; newVars: newArray; yourself!



More information about the Packages mailing list