further crypto layer optimizations for WebDAV compliance

This commit is contained in:
Sebastian Stenzel
2016-02-14 20:50:42 +01:00
parent cf64a6c425
commit 752601f4da
7 changed files with 185 additions and 78 deletions
@@ -83,7 +83,7 @@ public abstract class DelegatingFolder<D extends DelegatingFolder<D, F>, F exten
final Folder delegateDest = ((DelegatingFolder<?, ?>) destination).delegate;
delegate.copyTo(delegateDest);
} else {
delegate.copyTo(destination);
Folder.super.copyTo(destination);
}
}