Tools__LintService.st
branchjv
changeset 12206 927183c7da24
parent 12205 f210b6224ef0
child 12401 4714b9640528
--- a/Tools__LintService.st	Wed Mar 21 17:50:14 2012 +0000
+++ b/Tools__LintService.st	Thu Mar 22 13:55:44 2012 +0000
@@ -27,7 +27,7 @@
 
 "{ NameSpace: Tools }"
 
-Tools::CodeViewService subclass:#LintService
+CodeViewService subclass:#LintService
 	instanceVariableNames:'ruleHolderFromApp highlighter'
 	classVariableNames:''
 	poolDictionaries:''
@@ -184,12 +184,13 @@
         (app respondsTo: #selectedLintRules) ifTrue:[
             self ruleHolderFromApp: app selectedLintRules
         ] ifFalse:[
-            self breakPoint:#jv.
+            "/self breakPoint:#jv.
             "/ Transcript showCR:'LintService [info]: app does not provide a lintRuleHolder'
         ]
     ].
 
     "Created: / 08-03-2012 / 01:16:38 / cg"
+    "Modified: / 22-03-2012 / 13:51:14 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 registerIn: aCodeView
@@ -204,7 +205,7 @@
 !LintService class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/Tools__LintService.st,v 1.6 2012/03/12 18:20:05 cg Exp $'
+    ^ '$Id: Tools__LintService.st 7953 2012-03-22 13:55:44Z vranyj1 $'
 !
 
 version_CVS
@@ -212,5 +213,5 @@
 !
 
 version_SVN
-    ^ '$Id: Tools__LintService.st 7952 2012-03-21 17:50:14Z vranyj1 $'
+    ^ '$Id: Tools__LintService.st 7953 2012-03-22 13:55:44Z vranyj1 $'
 ! !