Removed exporting classifier data

This commit is contained in:
M66B 2021-02-10 08:42:54 +01:00
parent a54046a34c
commit 26859ca53f
1 changed files with 0 additions and 4 deletions

View File

@ -630,7 +630,6 @@ public class ActivitySetup extends ActivityBase implements FragmentManager.OnBac
jexport.put("accounts", jaccounts);
jexport.put("answers", janswers);
jexport.put("certificates", jcertificates);
jexport.put("classifier", MessageClassifier.toJson());
jexport.put("settings", jsettings);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
@ -955,9 +954,6 @@ public class ActivitySetup extends ActivityBase implements FragmentManager.OnBac
}
}
if (jimport.has("classifier"))
MessageClassifier.fromJson(jimport.getJSONObject("classifier"));
// Settings
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
SharedPreferences.Editor editor = prefs.edit();