From 877820e11487ae71199136a2403d7c433ddd3ed7 Mon Sep 17 00:00:00 2001 From: Neeraj Gupta <254676+ua741@users.noreply.github.com> Date: Mon, 21 Oct 2024 17:13:32 +0530 Subject: [PATCH] [mob] Remove unused method --- mobile/lib/utils/exif_util.dart | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/mobile/lib/utils/exif_util.dart b/mobile/lib/utils/exif_util.dart index 1febb9bb0c..3ab9b6e443 100644 --- a/mobile/lib/utils/exif_util.dart +++ b/mobile/lib/utils/exif_util.dart @@ -57,19 +57,6 @@ Future?> getExifFromSourceFile(File originFile) async { } } -Future getVideoPropsAsyncV2(File originalFile) async { - return Computer.shared().compute( - getVideoPropsComputer, - param: {"file": originalFile}, - taskName: "getVideoPropsAsyncV2", - ); -} - -Future getVideoPropsComputer(Map args) { - final File originalFile = args["file"]; - return getVideoPropsAsync(originalFile); -} - Future> getXmp(File file) async { return Computer.shared().compute( _getXMPComputer,