'From etoys2.1 of 26 July 2007 [latest update: #1512] on 26 July 2007 at 10:43:48 pm'! "Change Set: relBuilderFix-2.1-yo Date: 26 July 2007 Author: Yoshiki Ohshima Make sure that change set is cleared."! !ReleaseBuilder methodsFor: 'utilities' stamp: 'yo 7/26/2007 22:42'! finalCleanup "ReleaseBuilder new finalCleanup" Smalltalk forgetDoIts. DataStream initialize. Behavior flushObsoleteSubclasses. "The pointer to currentMethod is not realy needed (anybody care to fix this) and often holds on to obsolete bindings" MethodChangeRecord allInstancesDo: [:each | each noteNewMethod: nil]. self cleanUpEtoys. SmalltalkImage current fixObsoleteReferences. self cleanUpChanges. ChangeSet current clear. ChangeSet current name: 'Unnamed1'. Smalltalk flushClassNameCache. 3 timesRepeat: [ Smalltalk garbageCollect. Symbol compactSymbolTable. ]. ! !