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

Commit 30879517 authored by Arthur Ishiguro's avatar Arthur Ishiguro Committed by Android (Google) Code Review
Browse files

Merge "Fix default constructor for NanoApp"

parents 18e70278 afaddaaf
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -56,10 +56,10 @@ public class NanoApp {
     * {@link #setAppBinary(byte[])} and {@link #setAppId(long)} must be called
     * prior to passing this object to any managers.
     *
     * @see #NanoApp(int, byte[])
     * @see #NanoApp(long, byte[])
     */
    public NanoApp() {
        this(0, null);
        this(0L, null);
        mAppIdSet = false;
    }