fix typos

This commit is contained in:
Tom Hennen 2015-05-03 15:19:08 -04:00
parent db0ce285a3
commit 1725966bc4
1 changed files with 2 additions and 2 deletions

View File

@ -397,7 +397,7 @@ public class UserPreferences implements
}
public static boolean shouldResumeAfterCall() {
instanceAvailable();;
instanceAvailable();
return instance.resumeAfterCall;
}
@ -463,7 +463,7 @@ public class UserPreferences implements
} else if (key.equals(PREF_PAUSE_PLAYBACK_FOR_FOCUS_LOSS)) {
pauseForFocusLoss = sp.getBoolean(PREF_PAUSE_PLAYBACK_FOR_FOCUS_LOSS, false);
} else if (key.equals(PREF_RESUME_AFTER_CALL)) {
resumeAfterCall = sp.getBoolean(PREF_RESUME_AFTER_CALL, false);
resumeAfterCall = sp.getBoolean(PREF_RESUME_AFTER_CALL, true);
} else if (key.equals(PREF_FAST_FORWARD_SECS)) {
fastForwardSecs = sp.getInt(PREF_FAST_FORWARD_SECS, 30);
} else if (key.equals(PREF_REWIND_SECS)) {