mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-26 22:31:16 +00:00
Removed lenientMtimes code (not needed any more).
This commit is contained in:
parent
ee0b81a126
commit
7e725763d4
1 changed files with 0 additions and 32 deletions
|
@ -6,7 +6,6 @@ import android.util.Log;
|
||||||
import android.widget.Toast;
|
import android.widget.Toast;
|
||||||
|
|
||||||
import com.nutomic.syncthingandroid.syncthing.SyncthingRunnable;
|
import com.nutomic.syncthingandroid.syncthing.SyncthingRunnable;
|
||||||
import com.nutomic.syncthingandroid.syncthing.SyncthingService;
|
|
||||||
|
|
||||||
import org.w3c.dom.Document;
|
import org.w3c.dom.Document;
|
||||||
import org.w3c.dom.Element;
|
import org.w3c.dom.Element;
|
||||||
|
@ -138,10 +137,6 @@ public class ConfigXml {
|
||||||
changed = true;
|
changed = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (applyLenientMTimes(r)) {
|
|
||||||
changed = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (applyHashers(r)) {
|
if (applyHashers(r)) {
|
||||||
changed = true;
|
changed = true;
|
||||||
}
|
}
|
||||||
|
@ -173,33 +168,6 @@ public class ConfigXml {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Set 'lenientMtimes' (see https://github.com/syncthing/syncthing/issues/831) on the
|
|
||||||
* given folder.
|
|
||||||
*
|
|
||||||
* @return True if the XML was changed.
|
|
||||||
*/
|
|
||||||
private boolean applyLenientMTimes(Element folder) {
|
|
||||||
NodeList childs = folder.getChildNodes();
|
|
||||||
for (int i = 0; i < childs.getLength(); i++) {
|
|
||||||
Node item = childs.item(i);
|
|
||||||
if (item.getNodeName().equals("lenientMtimes")) {
|
|
||||||
if (item.getTextContent().equals(Boolean.toString(false))) {
|
|
||||||
item.setTextContent(Boolean.toString(true));
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// XML tag does not exist, create it.
|
|
||||||
Log.i(TAG, "Set 'lenientMtimes' on folder " + folder.getAttribute("id"));
|
|
||||||
Element newElem = mConfig.createElement("lenientMtimes");
|
|
||||||
newElem.setTextContent(Boolean.toString(true));
|
|
||||||
folder.appendChild(newElem);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set 'hashers' (see https://github.com/syncthing/syncthing-android/issues/384) on the
|
* Set 'hashers' (see https://github.com/syncthing/syncthing-android/issues/384) on the
|
||||||
* given folder.
|
* given folder.
|
||||||
|
|
Loading…
Reference in a new issue