mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-29 15:51:17 +00:00
Remove unused import (#35)
This commit is contained in:
parent
c44996012a
commit
640d7f1e02
2 changed files with 2 additions and 2 deletions
|
@ -416,8 +416,9 @@ public class SyncthingRunnable implements Runnable {
|
|||
* Only keep last {@link #LOG_FILE_MAX_LINES} lines in log file, to avoid bloat.
|
||||
*/
|
||||
private void trimLogFile() {
|
||||
if (!mLogFile.exists())
|
||||
if (!mLogFile.exists()) {
|
||||
return;
|
||||
}
|
||||
|
||||
try {
|
||||
LineNumberReader lnr = new LineNumberReader(new FileReader(mLogFile));
|
||||
|
|
|
@ -19,7 +19,6 @@ import org.w3c.dom.Node;
|
|||
import org.w3c.dom.NodeList;
|
||||
import org.xml.sax.SAXException;
|
||||
|
||||
import java.io.BufferedReader;
|
||||
import java.io.File;
|
||||
import java.io.InputStreamReader;
|
||||
import java.io.IOException;
|
||||
|
|
Loading…
Reference in a new issue