Remove unused feature flag

This commit is contained in:
Vishesh Handa
2021-08-10 14:16:13 +02:00
parent 0328ff4798
commit cb389a44af
2 changed files with 0 additions and 7 deletions

View File

@ -200,12 +200,6 @@ class NotesFolderFS with NotesFolderNotifier implements NotesFolder {
}
Set<String> pathsFound = {};
// Load the Folder config if exists
/*
if (Features.perFolderConfig) {
_config = await NotesFolderConfig.fromFS(this);
} */
_ignoredFiles = <IgnoredFile>[];
final dir = Directory(folderPath);

View File

@ -5,7 +5,6 @@ class Features {
// Make the desktop version always pro, for now.
static bool alwaysPro =
Platform.isWindows || Platform.isLinux || Platform.isMacOS;
static const bool perFolderConfig = false;
static final all = <Feature>[
Feature.basicSearch,