SmallSense__Manager.st
branchcvs_MAIN
changeset 1040 4a647c8034ab
parent 1039 24351c7340ac
--- a/SmallSense__Manager.st	Fri Jul 14 14:19:21 2017 +0200
+++ b/SmallSense__Manager.st	Sun Jul 16 12:40:49 2017 +0200
@@ -189,15 +189,18 @@
 release
     "Invoked when a new instance is created."
 
+    super release.
+    
     classes := nil.
     accessLock := Semaphore forMutualExclusion.
     updater stopAndRemoveAll.
 
     (UserPreferences current smallSenseEnabled == true) ifTrue:[
-	Smalltalk removeDependent: self.
+        Smalltalk removeDependent: self.
     ].
 
     "Created: / 21-11-2014 / 17:36:25 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 16-07-2017 / 12:22:09 / cg"
 ! !
 
 !Manager methodsFor:'updating'!