Fixed warning

pull/199/head
M66B 3 years ago
parent 13d52b806e
commit b58dc41267

@ -1033,6 +1033,8 @@ public class FragmentOptionsMisc extends FragmentBase implements SharedPreferenc
try { try {
Log.i("Update usage"); Log.i("Update usage");
Bundle args = new Bundle();
new SimpleTask<StorageData>() { new SimpleTask<StorageData>() {
@Override @Override
protected StorageData onExecute(Context context, Bundle args) throws Throwable { protected StorageData onExecute(Context context, Bundle args) throws Throwable {
@ -1071,7 +1073,7 @@ public class FragmentOptionsMisc extends FragmentBase implements SharedPreferenc
protected void onException(Bundle args, Throwable ex) { protected void onException(Bundle args, Throwable ex) {
Log.e(ex); Log.e(ex);
} }
}.execute(this, null, "usage"); }.execute(this, args, "usage");
} catch (Throwable ex) { } catch (Throwable ex) {
Log.e(ex); Log.e(ex);
} }

Loading…
Cancel
Save