diff options
| author | Samuel Tardieu <sam@rfc1149.net> | 2012-04-27 17:35:19 +0200 |
|---|---|---|
| committer | Samuel Tardieu <sam@rfc1149.net> | 2012-04-27 17:35:19 +0200 |
| commit | dda85545ae2e7c457179fd65ba5ae3bc8d309a53 (patch) | |
| tree | 351d984c8aef7bc771807c80342374249821fe08 | |
| parent | 1660ff191a15f4062819209f28493eacb9153083 (diff) | |
| download | cgeo-dda85545ae2e7c457179fd65ba5ae3bc8d309a53.zip cgeo-dda85545ae2e7c457179fd65ba5ae3bc8d309a53.tar.gz cgeo-dda85545ae2e7c457179fd65ba5ae3bc8d309a53.tar.bz2 | |
Refactoring: remove terminal return statements
| -rw-r--r-- | cgeo-calendar/src/cgeo/calendar/CalendarActivity.java | 1 | ||||
| -rw-r--r-- | main/src/cgeo/geocaching/connector/gc/IconDecoder.java | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/cgeo-calendar/src/cgeo/calendar/CalendarActivity.java b/cgeo-calendar/src/cgeo/calendar/CalendarActivity.java index 6e7be52..15b5872 100644 --- a/cgeo-calendar/src/cgeo/calendar/CalendarActivity.java +++ b/cgeo-calendar/src/cgeo/calendar/CalendarActivity.java @@ -61,7 +61,6 @@ public final class CalendarActivity extends Activity { } catch (Exception e) { Log.e(LOG_TAG, e.getMessage(), e); finish(); - return; } } diff --git a/main/src/cgeo/geocaching/connector/gc/IconDecoder.java b/main/src/cgeo/geocaching/connector/gc/IconDecoder.java index e052f60..74e78cc 100644 --- a/main/src/cgeo/geocaching/connector/gc/IconDecoder.java +++ b/main/src/cgeo/geocaching/connector/gc/IconDecoder.java @@ -153,7 +153,6 @@ public abstract class IconDecoder { } if ((bitmap.getPixel(x + POSX_FOUND, y + POSY_FOUND) & 0x00FFFFFF) == COLOR_FOUND) { cache.setFound(true); - return; } } catch (IllegalArgumentException e) { // intentionally left blank |
