1
0
mirror of https://github.com/owncloud/android-library.git synced 2025-06-07 16:06:08 +00:00

Removed unused methods from WebdavUtils

This commit is contained in:
David A. Velasco 2014-07-10 12:25:18 +02:00
parent 9af57b477e
commit 14d757ad9f

View File

@ -47,15 +47,6 @@ public class WebdavUtils {
new SimpleDateFormat("yyyy-MM-dd hh:mm:ss", Locale.US)
};
public static String prepareXmlForPropFind() {
String ret = "<?xml version=\"1.0\" ?><D:propfind xmlns:D=\"DAV:\"><D:allprop/></D:propfind>";
return ret;
}
public static String prepareXmlForPatch() {
return "<?xml version=\"1.0\" ?><D:propertyupdate xmlns:D=\"DAV:\"></D:propertyupdate>";
}
public static Date parseResponseDate(String date) {
Date returnDate = null;
SimpleDateFormat format = null;