diff -r 36a9efd23cf6 -r 941e576b6f71 Tools__LintService.st --- a/Tools__LintService.st Mon Mar 12 15:15:08 2012 +0100 +++ b/Tools__LintService.st Mon Mar 12 19:20:05 2012 +0100 @@ -28,10 +28,10 @@ "{ NameSpace: Tools }" CodeViewService subclass:#LintService - instanceVariableNames:'ruleHolderFromApp highlighter' - classVariableNames:'' - poolDictionaries:'' - category:'Interface-Lint' + instanceVariableNames:'ruleHolderFromApp highlighter' + classVariableNames:'' + poolDictionaries:'' + category:'Interface-Lint' ! !LintService class methodsFor:'documentation'! @@ -184,7 +184,8 @@ (app respondsTo: #selectedLintRules) ifTrue:[ self ruleHolderFromApp: app selectedLintRules ] ifFalse:[ - Transcript showCR:'oops - LintService''s app does not provide a lintRuleHolder' + self breakPoint:#jv. + "/ Transcript showCR:'LintService [info]: app does not provide a lintRuleHolder' ] ]. @@ -203,9 +204,9 @@ !LintService class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libtool/Tools__LintService.st,v 1.5 2012-03-08 00:25:59 cg Exp $' + ^ '$Header: /cvs/stx/stx/libtool/Tools__LintService.st,v 1.6 2012-03-12 18:20:05 cg Exp $' ! version_CVS - ^ '$Header: /cvs/stx/stx/libtool/Tools__LintService.st,v 1.5 2012-03-08 00:25:59 cg Exp $' + ^ '$Header: /cvs/stx/stx/libtool/Tools__LintService.st,v 1.6 2012-03-12 18:20:05 cg Exp $' ! !