diff options
| author | Bananeweizen <bananeweizen@gmx.de> | 2012-05-15 08:08:24 +0200 |
|---|---|---|
| committer | Bananeweizen <bananeweizen@gmx.de> | 2012-05-15 08:08:24 +0200 |
| commit | d29085d093a35ff5f08ef9415ea7d6a846f17c68 (patch) | |
| tree | b1563180f491a5135b755cbbdb3ed8d88ea2829d /main/src/cgeo/geocaching/cgeocaches.java | |
| parent | 55f3fb7375c6ad64f40db46d94646685464e331e (diff) | |
| download | cgeo-d29085d093a35ff5f08ef9415ea7d6a846f17c68.zip cgeo-d29085d093a35ff5f08ef9415ea7d6a846f17c68.tar.gz cgeo-d29085d093a35ff5f08ef9415ea7d6a846f17c68.tar.bz2 | |
refactoring: minor cleanups
* use ellipsis
* avoid String concatenation
Diffstat (limited to 'main/src/cgeo/geocaching/cgeocaches.java')
| -rw-r--r-- | main/src/cgeo/geocaching/cgeocaches.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/src/cgeo/geocaching/cgeocaches.java b/main/src/cgeo/geocaching/cgeocaches.java index daed99d..ad8c30e 100644 --- a/main/src/cgeo/geocaching/cgeocaches.java +++ b/main/src/cgeo/geocaching/cgeocaches.java @@ -388,9 +388,9 @@ public class cgeocaches extends AbstractListActivity { if (msg.what == 0) { //no caches progress.setMessage(res.getString(R.string.web_import_waiting)); } else if (msg.what == 1) { //cache downloading - progress.setMessage(res.getString(R.string.web_downloading) + " " + (String) msg.obj + "..."); + progress.setMessage(res.getString(R.string.web_downloading) + " " + (String) msg.obj + '…'); } else if (msg.what == 2) { //Cache downloaded - progress.setMessage(res.getString(R.string.web_downloaded) + " " + (String) msg.obj + "."); + progress.setMessage(res.getString(R.string.web_downloaded) + " " + (String) msg.obj + '…'); refreshCurrentList(); } else if (msg.what == -2) { progress.dismiss(); |
