diff options
| author | Bananeweizen <bananeweizen@gmx.de> | 2011-10-15 19:03:18 +0200 |
|---|---|---|
| committer | Bananeweizen <bananeweizen@gmx.de> | 2011-10-15 19:03:18 +0200 |
| commit | 9715ae30450e02fcf731a06888ad832c1734e544 (patch) | |
| tree | 0bf14c2df4045509d9ad08c16ce64f10a4324b40 /main/src/cgeo/geocaching/cgBase.java | |
| parent | f626fe08ed6ecf6a33327ebada2a362bbceedd57 (diff) | |
| download | cgeo-9715ae30450e02fcf731a06888ad832c1734e544.zip cgeo-9715ae30450e02fcf731a06888ad832c1734e544.tar.gz cgeo-9715ae30450e02fcf731a06888ad832c1734e544.tar.bz2 | |
code cleanup: remove all unnecessary casts
Diffstat (limited to 'main/src/cgeo/geocaching/cgBase.java')
| -rw-r--r-- | main/src/cgeo/geocaching/cgBase.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/main/src/cgeo/geocaching/cgBase.java b/main/src/cgeo/geocaching/cgBase.java index 92acd73..52336ad 100644 --- a/main/src/cgeo/geocaching/cgBase.java +++ b/main/src/cgeo/geocaching/cgBase.java @@ -1642,7 +1642,7 @@ public class cgBase { /** * Parse a trackable HTML description into a cgTrackable object - * + * * @param page * the HTML page to parse, already processed through {@link BaseUtils#replaceWhitespace} * @param app @@ -2385,7 +2385,7 @@ public class cgBase { if (c > 300) { logUpdated.append("&#"); - logUpdated.append(Integer.toString((int) c)); + logUpdated.append(Integer.toString(c)); logUpdated.append(';'); } else { logUpdated.append(c); @@ -3413,7 +3413,7 @@ public class cgBase { /** * Generate a numeric date and time string according to system-wide settings (locale, * date format) such as "7 sept. à 12:35". - * + * * @param context * a Context * @param date |
