Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c95f7731 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Create dedicated long variables." am: 78106c0e am: dbca2d9a am:...

Merge "Create dedicated long variables." am: 78106c0e am: dbca2d9a am: 742e35e2 am: 2afff120 am: 8ec2e930

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1874248

Change-Id: Ic3ec1ccf1b0e250ec54f2105475164de77a78c1a
parents ee8af408 8ec2e930
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -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;
    }
}