Fix for NPE in CalculatorApplication class
This commit is contained in:
parent
b5da6a811d
commit
25adac1dcd
@ -46,6 +46,7 @@ import org.solovyev.common.msg.MessageType;
|
|||||||
import javax.annotation.Nonnull;
|
import javax.annotation.Nonnull;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
import java.util.concurrent.TimeUnit;
|
||||||
|
|
||||||
@ReportsCrashes(formKey = "",
|
@ReportsCrashes(formKey = "",
|
||||||
formUri = "https://serso.cloudant.com/acra-cpp/_design/acra-storage/_update/report",
|
formUri = "https://serso.cloudant.com/acra-cpp/_design/acra-storage/_update/report",
|
||||||
@ -183,8 +184,13 @@ public class CalculatorApplication extends android.app.Application implements Sh
|
|||||||
Locator.getInstance().getLogger().debug(TAG, "Application started!");
|
Locator.getInstance().getLogger().debug(TAG, "Application started!");
|
||||||
Locator.getInstance().getNotifier().showDebugMessage(TAG, "Application started!");
|
Locator.getInstance().getNotifier().showDebugMessage(TAG, "Application started!");
|
||||||
|
|
||||||
// we must update the widget when app starts
|
App.getUiThreadExecutor().execute(new Runnable() {
|
||||||
App.getBroadcaster().sendEditorStateChangedIntent();
|
@Override
|
||||||
|
public void run() {
|
||||||
|
// we must update the widget when app starts
|
||||||
|
App.getBroadcaster().sendEditorStateChangedIntent();
|
||||||
|
}
|
||||||
|
}, 100, TimeUnit.MILLISECONDS);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void setTheme(@Nonnull SharedPreferences preferences) {
|
private void setTheme(@Nonnull SharedPreferences preferences) {
|
||||||
|
Loading…
Reference in New Issue
Block a user