Autobindings, Remove Server code from Android, Debug mode Fixes #639

Merged
sarah merged 3 commits from autobindings into trunk 2023-03-16 23:35:59 +00:00
1 changed files with 0 additions and 7 deletions
Showing only changes of commit 1516b30161 - Show all commits

View File

@ -10,13 +10,6 @@ class ProfileListState extends ChangeNotifier {
List<ProfileInfoState> _profiles = [];
int get num => _profiles.length;
@override
void dispose() {
EnvironmentConfig.debugLog("disposal of profile infostate called...");
EnvironmentConfig.debugLog(StackTrace.current.toString());
super.dispose();
}
void add(String onion, String name, String picture, String defaultPicture, String contactsJson, String serverJson, bool online, bool autostart, bool encrypted) {
var idx = _profiles.indexWhere((element) => element.onion == onion);
if (idx == -1) {