Skip to content
Snippets Groups Projects
Commit 605caf1b authored by Keisuke Kuroyanagi's avatar Keisuke Kuroyanagi
Browse files

Fix NPE in SettingsValues.

Change-Id: I96fc381d2b45881aeb342d33207cd7fe82f5077c
parent 4a55ee14
No related branches found
No related tags found
No related merge requests found
......@@ -321,7 +321,7 @@ public final class SettingsValues {
public boolean isBrokenByRecorrection() {
final AppWorkaroundsUtils appWorkaroundUtils
= mAppWorkarounds.get(null, TIMEOUT_TO_GET_TARGET_PACKAGE);
return null == appWorkaroundUtils ? null : appWorkaroundUtils.isBrokenByRecorrection();
return null == appWorkaroundUtils ? false : appWorkaroundUtils.isBrokenByRecorrection();
}
// Helper functions to create member values.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment