Files
openide/java/java-tests/testData/refactoring/inlineMethod/Scr13831.java
Dmitry Jemerov b43c03ca2f moving tests
2009-09-10 19:49:38 +04:00

12 lines
289 B
Java

public class Foo
{
public static void main( String[] args )
{
log( "integer", new Integer( 5 ) );
log( "float", new Float( 5.5f ) );
}
private static void <caret>log(String title, Object value) {
System.out.println( title + ":" + value );
}
}