View by Classes

Findings - Overview

warning method needlessly boxes a boolean constant (Findbugs)

method new org.jcoderz.commons.logging.XmlPrinter() needlessly boxes a boolean constant

Further info on the wiki.

This method assigns a Boxed boolean constant to a primitive boolean variable, or assigns a primitive boolean constant to a Boxed boolean variable. Use the correct constant for the variable desired. Use

				boolean b = true;
				boolean b = false;
				
				or
				
				Boolean b = Boolean.TRUE;
				Boolean b = Boolean.FALSE;
			
1org.jcoderz.commons.logging.XmlPrinter
 [603]