From 632d6119d20034b9dcbbd2b3fc5a5584246ae50e Mon Sep 17 00:00:00 2001 From: Neeraj Gupta <254676+ua741@users.noreply.github.com> Date: Mon, 17 Mar 2025 15:03:42 +0530 Subject: [PATCH] [mob] move --- mobile/lib/db/{enum => common}/conflict_algo.dart | 0 mobile/lib/db/files_db.dart | 2 +- mobile/lib/services/sync/local_sync_service.dart | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename mobile/lib/db/{enum => common}/conflict_algo.dart (100%) diff --git a/mobile/lib/db/enum/conflict_algo.dart b/mobile/lib/db/common/conflict_algo.dart similarity index 100% rename from mobile/lib/db/enum/conflict_algo.dart rename to mobile/lib/db/common/conflict_algo.dart diff --git a/mobile/lib/db/files_db.dart b/mobile/lib/db/files_db.dart index b4bffc79a3..b873e152f3 100644 --- a/mobile/lib/db/files_db.dart +++ b/mobile/lib/db/files_db.dart @@ -6,7 +6,7 @@ import 'package:flutter/foundation.dart'; import 'package:logging/logging.dart'; import 'package:path/path.dart'; import 'package:path_provider/path_provider.dart'; -import "package:photos/db/enum/conflict_algo.dart"; +import "package:photos/db/common/conflict_algo.dart"; import "package:photos/extensions/stop_watch.dart"; import 'package:photos/models/backup_status.dart'; import 'package:photos/models/file/file.dart'; diff --git a/mobile/lib/services/sync/local_sync_service.dart b/mobile/lib/services/sync/local_sync_service.dart index 69e7a09850..a0bc54437e 100644 --- a/mobile/lib/services/sync/local_sync_service.dart +++ b/mobile/lib/services/sync/local_sync_service.dart @@ -7,8 +7,8 @@ import 'package:photo_manager/photo_manager.dart'; import 'package:photos/core/configuration.dart'; import "package:photos/core/errors.dart"; import 'package:photos/core/event_bus.dart'; +import "package:photos/db/common/conflict_algo.dart"; import 'package:photos/db/device_files_db.dart'; -import "package:photos/db/enum/conflict_algo.dart"; import 'package:photos/db/file_updation_db.dart'; import 'package:photos/db/files_db.dart'; import 'package:photos/events/backup_folders_updated_event.dart';