From 062fe21567101c130477e59a63c2ee6b1f4cd7a0 Mon Sep 17 00:00:00 2001 From: Dominik Stadler Date: Sun, 31 Mar 2019 11:45:18 +0200 Subject: [PATCH] Remove leftover System.out.println --- .../kotlin/com/simplemobiletools/gallery/pro/helpers/Config.kt | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/src/main/kotlin/com/simplemobiletools/gallery/pro/helpers/Config.kt b/app/src/main/kotlin/com/simplemobiletools/gallery/pro/helpers/Config.kt index c2b0f50d6..856bb71ae 100644 --- a/app/src/main/kotlin/com/simplemobiletools/gallery/pro/helpers/Config.kt +++ b/app/src/main/kotlin/com/simplemobiletools/gallery/pro/helpers/Config.kt @@ -376,20 +376,17 @@ class Config(context: Context) : BaseConfig(context) { set(bottomActions) = prefs.edit().putBoolean(BOTTOM_ACTIONS, bottomActions).apply() fun removeLastVideoPosition(path: String) { - System.out.println("Remove position: $path") prefs.edit().remove(LAST_VIDEO_POSITION_PREFIX + path.toLowerCase()).apply() } fun saveLastVideoPosition(path: String, value: Int) { if (!path.isEmpty()) { - System.out.println("Saving position: $path at $value") prefs.edit().putInt(LAST_VIDEO_POSITION_PREFIX + path.toLowerCase(), value).apply() } } fun getLastVideoPosition(path: String): Int { val value = prefs.getInt(LAST_VIDEO_POSITION_PREFIX + path.toLowerCase(), 0) - System.out.println("Get position: $path at $value") return value }