Removed unused method that was used for debugging

This commit is contained in:
cketti 2012-07-07 14:28:15 +02:00
parent 411117b660
commit 2269f22153
1 changed files with 0 additions and 9 deletions

View File

@ -10,7 +10,6 @@ import java.util.Map;
import android.content.Context;
import android.content.SharedPreferences;
import android.util.Config;
import android.util.Log;
import com.fsck.k9.preferences.Editor;
import com.fsck.k9.preferences.Storage;
@ -155,14 +154,6 @@ public class Preferences {
getPreferences().edit().putString("defaultAccountUuid", account.getUuid()).commit();
}
public void dump() {
if (Config.LOGV) {
for (String key : getPreferences().getAll().keySet()) {
Log.v(K9.LOG_TAG, key + " = " + getPreferences().getAll().get(key));
}
}
}
public SharedPreferences getPreferences() {
return mStorage;
}