J2K: Insert initializer type for properties with primitive type if necessary
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
class A {
|
||||
public void foo() {
|
||||
int i = 1;
|
||||
byte b = 1;
|
||||
short s = 1;
|
||||
long l = 1;
|
||||
double d = 1.0;
|
||||
float f = 1.0f;
|
||||
char c = 1;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user