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

Commit afaddaaf authored by Arthur Ishiguro's avatar Arthur Ishiguro
Browse files

Fix default constructor for NanoApp

Bug: 37274363
Test: Compile and run CHQTS, verify warning not shown
Change-Id: I842f8571be31838b726fecfb138f329dea5f26fe
parent c7a0402c
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;
    }