diff options
author | steckbrief <steckbrief@chefmail.de> | 2015-10-22 00:19:44 +0200 |
---|---|---|
committer | steckbrief <steckbrief@chefmail.de> | 2015-10-22 00:19:44 +0200 |
commit | 01bfe0c59a5bc3eba1db111d3bc687aac9be7847 (patch) | |
tree | e7d6d63eeed8514b9f3992dd09e1abd84932e9a5 /src/main/java/de/tzur/conversations/Settings.java | |
parent | 0a5a985cbe582e6f7ece37ec257fe53ccee4bb42 (diff) | |
parent | 85a25984f4bf4dfa2432fbc2c92f8117cf927fcf (diff) |
Merge trz/rename into trz/rebase
Diffstat (limited to 'src/main/java/de/tzur/conversations/Settings.java')
-rw-r--r-- | src/main/java/de/tzur/conversations/Settings.java | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/src/main/java/de/tzur/conversations/Settings.java b/src/main/java/de/tzur/conversations/Settings.java index c919d60c..23eb3ee4 100644 --- a/src/main/java/de/tzur/conversations/Settings.java +++ b/src/main/java/de/tzur/conversations/Settings.java @@ -3,11 +3,13 @@ package de.tzur.conversations; import android.content.SharedPreferences; import android.util.Log; +import de.thedevstack.conversationsplus.ConversationsPlusApplication; + /** * This class is used to provide access to settings which have to be accessed frequently. * Every setting in this class has to be updated using @see SettingsActivity#onSharedPreferenceChanged. */ -public final class Settings { +public abstract class Settings { /** * Initializes the settings provided via this static class. @@ -56,6 +58,7 @@ public final class Settings { break; } } + /** * Boolean if emoticons should be parsed to emoticons or not. */ @@ -85,10 +88,4 @@ public final class Settings { */ public static boolean CONFIRM_MESSAGE_READ = true; - /** - * This is a utility class - private constructor avoids any instantiation. - */ - private Settings() { - // Private constructor to avoid instantiation - } } |