diff options
author | Bananeweizen <bananeweizen@gmx.de> | 2012-05-05 18:53:59 +0200 |
---|---|---|
committer | Bananeweizen <bananeweizen@gmx.de> | 2012-05-05 18:53:59 +0200 |
commit | 9c34c714484eb0791d02f85af396aeeba940d103 (patch) | |
tree | fd722280c9a99a5a795bcdb0ddb5a0eed8e83e89 /main/src/cgeo/geocaching/files | |
parent | c3f97cce33fedadf7d33b6d603c31de872ca0a79 (diff) | |
download | cgeo-9c34c714484eb0791d02f85af396aeeba940d103.zip cgeo-9c34c714484eb0791d02f85af396aeeba940d103.tar.gz cgeo-9c34c714484eb0791d02f85af396aeeba940d103.tar.bz2 |
fix #1459: Refactoring navigation menu
Diffstat (limited to 'main/src/cgeo/geocaching/files')
-rw-r--r-- | main/src/cgeo/geocaching/files/LocalStorage.java | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/main/src/cgeo/geocaching/files/LocalStorage.java b/main/src/cgeo/geocaching/files/LocalStorage.java index 6853c08..eea761b 100644 --- a/main/src/cgeo/geocaching/files/LocalStorage.java +++ b/main/src/cgeo/geocaching/files/LocalStorage.java @@ -136,8 +136,8 @@ public class LocalStorage { /** * Save an HTTP response to a file. * - * @param entity - * the entity whose content will be saved + * @param response + * the response whose entity content will be saved * @param targetFile * the target file, which will be created if necessary * @return true if the operation was successful, false otherwise, in which case the file will not exist @@ -203,13 +203,13 @@ public class LocalStorage { } /** - * Save an HTTP response to a file. + * Save a stream to a file. * <p/> - * If the response could not be saved to the file due, for example, to a network error, - * the file will not exist when this method returns. + * If the response could not be saved to the file due, for example, to a network error, the file will not exist when + * this method returns. * - * @param entity - * the entity whose content will be saved + * @param inputStream + * the stream whose content will be saved * @param targetFile * the target file, which will be created if necessary * @return true if the operation was successful, false otherwise |