in the output of the javancss-maven-plugin as checked out from SVN there is
a bug:
in the first "Averages" part the values for Classes average and Functions
average are exchanged.
This can be fixed in NcssReportGenerator.java by exchanging two lines in the
method doObjectAverage() :
old and wrong:
        tableCellHelper( node.valueOf( "functions" ) );
        tableCellHelper( node.valueOf( "classes" ) );
new and correct:
        tableCellHelper( node.valueOf( "classes" ) );
        tableCellHelper( node.valueOf( "functions" ) );


Mit freundlichen Grüßen

i.A. Detlef Pleiß
________________________________________________________________

Mit einem Klick alles im Blick, dank Informatik
Partner im Wissenschaftsjahr 2006 – http://www.informatikjahr.de
________________________________________________________________

Datenverarbeitungskaufmann
Detlef Pleiß


Senior IT-Berater

comundus GmbH
Schüttelgrabenring 3, 71332 Waiblingen

Telefon  +49 (0)71 51-5 00 28-22
Internet http://www.comundus.com

IT EXCELLENCE by comundus.
________________________________________________________________


Reply via email to