code cleanup, pmdOnPmd violation: floatZERO -> FLOAT_ZERO

git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/trunk@6670 51baf565-9d33-0410-a72c-fc3788e3496d
This commit is contained in:
Xavier Le Vourch
2008-10-25 06:48:02 +00:00
parent ce8346a183
commit c44703ba1d

View File

@ -5,5 +5,5 @@ public interface NumericConstants {
Integer ZERO = 0;
Integer ONE = 1;
Float floatZERO = new Float(0.0f);
Float FLOAT_ZERO = new Float(0.0f);
}