forked from iterate-ch/cyberduck
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
26 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,6 @@ | |
* Bug fixes, suggestions and comments should be sent to [email protected] | ||
*/ | ||
|
||
import ch.cyberduck.core.Local; | ||
import ch.cyberduck.core.Path; | ||
import ch.cyberduck.core.exception.BackgroundException; | ||
import ch.cyberduck.core.exception.InteroperabilityException; | ||
|
@@ -33,7 +32,6 @@ | |
import org.apache.logging.log4j.Logger; | ||
import org.w3c.dom.Element; | ||
|
||
import javax.xml.namespace.QName; | ||
import java.io.IOException; | ||
import java.util.ArrayList; | ||
import java.util.Collections; | ||
|
@@ -44,9 +42,6 @@ | |
import com.github.sardine.impl.SardineException; | ||
import com.github.sardine.util.SardineUtil; | ||
|
||
import static com.github.sardine.util.SardineUtil.CUSTOM_NAMESPACE_PREFIX; | ||
import static com.github.sardine.util.SardineUtil.CUSTOM_NAMESPACE_URI; | ||
|
||
public class DAVMetadataFeature implements Headers { | ||
private static final Logger log = LogManager.getLogger(DAVMetadataFeature.class); | ||
|
||
|
@@ -57,7 +52,7 @@ public DAVMetadataFeature(final DAVSession session) { | |
} | ||
|
||
@Override | ||
public Map<String, String> getDefault(final Local local) { | ||
public Map<String, String> getDefault() { | ||
return new HostPreferences(session.getHost()).getMap("webdav.metadata.default"); | ||
} | ||
|
||
|