Merge "Create dedicated long variables."

This commit is contained in:
Treehugger Robot
2021-10-29 14:57:01 +00:00
committed by Gerrit Code Review

View File

@@ -63,6 +63,8 @@ public final class SomeArgs {
public int argi4;
public int argi5;
public int argi6;
public long argl1;
public long argl2;
private SomeArgs() {
/* do nothing - reduce visibility */
@@ -129,5 +131,7 @@ public final class SomeArgs {
argi4 = 0;
argi5 = 0;
argi6 = 0;
argl1 = 0;
argl2 = 0;
}
}