Skip to content

Commit 50762ee

Browse files
committed
Remove TODO()s
1 parent bb0aa0b commit 50762ee

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

app/src/main/java/eu/darken/sdmse/deduplicator/core/Deduplicator.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,9 @@ class Deduplicator @Inject constructor(
193193
duplicates = group.duplicates.filter { !paths.contains(it.path) }.toSet()
194194
)
195195

196-
Duplicate.Type.PHASH -> TODO()
196+
Duplicate.Type.PHASH -> {
197+
group // TODO NOOP
198+
}
197199
}
198200
if (newGroup.duplicates.size >= 2) {
199201
newGroup

app/src/main/java/eu/darken/sdmse/deduplicator/ui/details/cluster/ClusterViewModel.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,9 @@ class ClusterViewModel @Inject constructor(
8181
}.run { items.addAll(this) }
8282
}
8383

84-
Duplicate.Type.PHASH -> TODO()
84+
Duplicate.Type.PHASH -> {
85+
// TODO NOOP
86+
}
8587
}
8688

8789
items

0 commit comments

Comments
 (0)