Fix default constructor for NanoApp

Bug: 37274363
Test: Compile and run CHQTS, verify warning not shown
Change-Id: I842f8571be31838b726fecfb138f329dea5f26fe
This commit is contained in:
Arthur Ishiguro
2017-07-12 16:24:09 -07:00
parent c7a0402c6e
commit afaddaaffb

View File

@@ -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;
}