SmallSense__EditSupport.st
changeset 234 97857872ee47
parent 219 c69943a410fd
child 239 e1b7b5f0f4b7
--- a/SmallSense__EditSupport.st	Thu May 22 16:15:30 2014 +0100
+++ b/SmallSense__EditSupport.st	Fri May 23 12:58:31 2014 +0100
@@ -371,34 +371,6 @@
     "Modified: / 01-04-2014 / 18:00:35 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
-!EditSupport methodsFor:'private-completion'!
-
-computeCompletion
-    | completionEngineClass view result |
-
-    completionEngineClass := self completionEngineClass.
-    completionEngineClass isNil ifTrue: [ ^ nil ].
-
-    view := codeView.
-    UserInformation 
-        handle: [:ex | 
-            view showInfo: (ex messageText).
-            ex proceed.
-        ]
-        do: [
-            | context |
-
-            context := CompletionContext new.
-            context environment: self environment.
-            context support: self.
-            result := completionEngineClass new complete: context
-        ].
-    ^ result.
-
-    "Created: / 27-09-2013 / 13:21:52 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified: / 18-05-2014 / 11:46:39 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-! !
-
 !EditSupport methodsFor:'private-scanning'!
 
 scanLineAt: lineNumber