refactor: Remove unused RetrivalMode flag

This commit is contained in:
Lars Toenning
2024-02-17 21:40:46 +01:00
parent 4efb7d44e1
commit d977223fd4

View File

@@ -35,7 +35,6 @@ namespace BlackMisc::Db
CacheThenShared = Shared | Cached, //!< Cache where possible, otherwise shared
CacheAndSharedInfo = SharedInfoOnly | Cached, //!< Cached data plus shared info file
DbReadingOrShared = DbReading | Shared, //!< read from DB or shared
DbReadingOrAnyShared = DbReading | Shared | SharedInfoOnly //!< read from DB or shared/shared info
};
Q_DECLARE_FLAGS(DataRetrievalMode, DataRetrievalModeFlag)