diff -r 59b646e2fc57 -r f3fb1c645c67 ClassDescription.st --- a/ClassDescription.st Fri Dec 21 19:40:25 2012 +0100 +++ b/ClassDescription.st Fri Dec 21 19:41:12 2012 +0100 @@ -1848,7 +1848,7 @@ source := aMethod source. source isNil ifTrue:[ - self error:('Cannot recompile, source is missing for %1>>%2' bindWith:aMethod displayString). + self error:('Cannot recompile, source is missing for ', aMethod displayString). ]. "/ avoid parsing, if possible @@ -4229,11 +4229,11 @@ !ClassDescription class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libbasic/ClassDescription.st,v 1.228 2012-12-21 18:40:25 stefan Exp $' + ^ '$Header: /cvs/stx/stx/libbasic/ClassDescription.st,v 1.229 2012-12-21 18:41:12 stefan Exp $' ! version_CVS - ^ '$Header: /cvs/stx/stx/libbasic/ClassDescription.st,v 1.228 2012-12-21 18:40:25 stefan Exp $' + ^ '$Header: /cvs/stx/stx/libbasic/ClassDescription.st,v 1.229 2012-12-21 18:41:12 stefan Exp $' ! !