diff options
| author | Samuel Tardieu <sam@rfc1149.net> | 2013-09-15 15:43:28 +0200 |
|---|---|---|
| committer | Samuel Tardieu <sam@rfc1149.net> | 2013-09-15 15:43:28 +0200 |
| commit | cc28e603739e010b13e2e2afa2260eaf63978cb1 (patch) | |
| tree | 420a62062070a1fbd108547402c65b42630ae23a /main/src/cgeo/geocaching/files | |
| parent | 5d0dee5e937945042f5f5e59b4934ff4d6f6dbb4 (diff) | |
| download | cgeo-cc28e603739e010b13e2e2afa2260eaf63978cb1.zip cgeo-cc28e603739e010b13e2e2afa2260eaf63978cb1.tar.gz cgeo-cc28e603739e010b13e2e2afa2260eaf63978cb1.tar.bz2 | |
Use Apache commons IOUtils rather than our own
Diffstat (limited to 'main/src/cgeo/geocaching/files')
| -rw-r--r-- | main/src/cgeo/geocaching/files/FileParser.java | 3 | ||||
| -rw-r--r-- | main/src/cgeo/geocaching/files/LocalStorage.java | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/main/src/cgeo/geocaching/files/FileParser.java b/main/src/cgeo/geocaching/files/FileParser.java index bafd858..396a589 100644 --- a/main/src/cgeo/geocaching/files/FileParser.java +++ b/main/src/cgeo/geocaching/files/FileParser.java @@ -2,7 +2,8 @@ package cgeo.geocaching.files; import cgeo.geocaching.Geocache; import cgeo.geocaching.utils.CancellableHandler; -import cgeo.geocaching.utils.IOUtils; + +import org.apache.commons.io.IOUtils; import java.io.BufferedInputStream; import java.io.BufferedReader; diff --git a/main/src/cgeo/geocaching/files/LocalStorage.java b/main/src/cgeo/geocaching/files/LocalStorage.java index 260f6b2..3307473 100644 --- a/main/src/cgeo/geocaching/files/LocalStorage.java +++ b/main/src/cgeo/geocaching/files/LocalStorage.java @@ -3,11 +3,11 @@ package cgeo.geocaching.files; import cgeo.geocaching.CgeoApplication; import cgeo.geocaching.utils.CryptUtils; import cgeo.geocaching.utils.FileUtils; -import cgeo.geocaching.utils.IOUtils; import cgeo.geocaching.utils.Log; import ch.boye.httpclientandroidlib.Header; import ch.boye.httpclientandroidlib.HttpResponse; +import org.apache.commons.io.IOUtils; import org.apache.commons.lang3.StringUtils; import android.os.Environment; |
