diff -r 9272fef1d474 -r 2eb81cedd55f reports/Builder__ReportClassSourceInfo.st --- a/reports/Builder__ReportClassSourceInfo.st Mon Dec 15 12:35:41 2014 +0100 +++ b/reports/Builder__ReportClassSourceInfo.st Mon Dec 15 12:35:45 2014 +0100 @@ -35,16 +35,15 @@ ] ifFalse:[ filter := [:mth | mth package = package ]. ]. - - - klass fileOutOn:aStream - withTimeStamp:false - withInitialize:true - withDefinition:true - methodFilter:filter. + klass isLoaded ifFalse:[ klass autoload ]. + klass fileOutOn:aStream + withTimeStamp:false + withInitialize:true + withDefinition:true + methodFilter:filter. "Created: / 01-03-2013 / 17:51:10 / Jan Vrany " - "Modified: / 29-07-2013 / 19:09:17 / Jan Vrany " + "Modified: / 15-12-2014 / 11:27:02 / Jan Vrany " ! validate