Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9a44590e authored by Neil Fuller's avatar Neil Fuller
Browse files

Fix a remove*Listener call that doesn't remove

Fix a remove*Listener call that doesn't remove the listener.

Test: Build only
Change-Id: I67b57e8df8a6d39622999634cefdc267fc07ecae
parent f2e4a94a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -171,7 +171,7 @@ public class SettingsHelper {
     * Remove a listener for changes to the location enabled setting.
     */
    public void removeOnLocationEnabledChangedListener(UserSettingChangedListener listener) {
        mLocationMode.addListener(listener);
        mLocationMode.removeListener(listener);
    }

    /**