なぜかハードコーディングされてたので修正

This commit is contained in:
ろむねこ 2023-12-11 13:13:10 +09:00
parent 29a77307a1
commit c6056dd033
No known key found for this signature in database
GPG Key ID: FA1F39A1BA37D168

View File

@ -21,6 +21,6 @@ public class SharedPrefImpl implements SharedPref{
@Override
public SharedPreferences getSharedPreferencesByTag(SharedPrefType sharedPrefType) {
return applicationContext.getSharedPreferences(SharedPrefType.COMMON.getTag(), Context.MODE_PRIVATE);
return applicationContext.getSharedPreferences(sharedPrefType.getTag(), Context.MODE_PRIVATE);
}
}