apt -print foo.java
- - -foo.java- - - - - - - - - -
public class foo {
private static final long psfl = 1234567890L;
}
output:
public class foo {
public foo();
private static final long psfl = 1234567890;
}
- - -foo.java- - - - - - - - - -
public class foo {
private static final long psfl = 1234567890L;
}
output:
public class foo {
public foo();
private static final long psfl = 1234567890;
}
- relates to
-
JDK-5026952 Further refine apt -print output
-
- Resolved
-