blob: 7cf58b26e1a2fb4e41f82535bd3cfd7190bb2269 [file] [log] [blame]
public class Foo
{
public static void main( String[] args )
{
Object value = null;
log( "float", new Float( 5.5f ) );
}
private static void <caret>log(String title, Object value) {
System.out.println( title + ":" + value );
}
}