File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
backblaze/src/main/java/ch/cyberduck/core/b2 Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 1818import ch .cyberduck .core .AbstractProtocol ;
1919import ch .cyberduck .core .PathContainerService ;
2020import ch .cyberduck .core .Scheme ;
21- import ch .cyberduck .core .synchronization .ChecksumComparisonService ;
2221import ch .cyberduck .core .synchronization .ComparisonService ;
2322import ch .cyberduck .core .synchronization .DefaultComparisonService ;
23+ import ch .cyberduck .core .synchronization .VersionIdComparisonService ;
2424import ch .cyberduck .core .text .DefaultLexicographicOrderComparator ;
2525
2626import java .util .Comparator ;
@@ -94,7 +94,7 @@ public <T> T getFeature(final Class<T> type) {
9494 return (T ) new B2PathContainerService ();
9595 }
9696 if (type == ComparisonService .class ) {
97- return (T ) new DefaultComparisonService (new ChecksumComparisonService (), ComparisonService .disabled );
97+ return (T ) new DefaultComparisonService (new VersionIdComparisonService (), ComparisonService .disabled );
9898 }
9999 return super .getFeature (type );
100100 }
You can’t perform that action at this time.
0 commit comments