diff options
| author | Samuel Tardieu <sam@rfc1149.net> | 2013-01-07 21:54:54 +0100 |
|---|---|---|
| committer | Samuel Tardieu <sam@rfc1149.net> | 2013-01-07 21:54:54 +0100 |
| commit | 1515e2fd5a136c71344ad06664c1a347846eb0ae (patch) | |
| tree | b4ba0861840831be085ca3c5860492326d7deadf /tests/src/cgeo/geocaching/test | |
| parent | 3fb0e5f2d74b851836473a780a593cc7893cca9a (diff) | |
| download | cgeo-1515e2fd5a136c71344ad06664c1a347846eb0ae.zip cgeo-1515e2fd5a136c71344ad06664c1a347846eb0ae.tar.gz cgeo-1515e2fd5a136c71344ad06664c1a347846eb0ae.tar.bz2 | |
Refactoring: rename cgTrackable into Trackable
Diffstat (limited to 'tests/src/cgeo/geocaching/test')
| -rw-r--r-- | tests/src/cgeo/geocaching/test/mock/GC2JVEH.java | 8 | ||||
| -rw-r--r-- | tests/src/cgeo/geocaching/test/mock/MockedCache.java | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/tests/src/cgeo/geocaching/test/mock/GC2JVEH.java b/tests/src/cgeo/geocaching/test/mock/GC2JVEH.java index 9aa18f9..64ff51a 100644 --- a/tests/src/cgeo/geocaching/test/mock/GC2JVEH.java +++ b/tests/src/cgeo/geocaching/test/mock/GC2JVEH.java @@ -1,7 +1,7 @@ package cgeo.geocaching.test.mock; +import cgeo.geocaching.Trackable; import cgeo.geocaching.cgImage; -import cgeo.geocaching.cgTrackable; import cgeo.geocaching.connector.gc.Login; import cgeo.geocaching.enumerations.CacheSize; import cgeo.geocaching.enumerations.CacheType; @@ -133,9 +133,9 @@ public class GC2JVEH extends MockedCache { } @Override - public List<cgTrackable> getInventory() { - final ArrayList<cgTrackable> inventory = new ArrayList<cgTrackable>(); - inventory.add(new cgTrackable()); + public List<Trackable> getInventory() { + final ArrayList<Trackable> inventory = new ArrayList<Trackable>(); + inventory.add(new Trackable()); return inventory; } diff --git a/tests/src/cgeo/geocaching/test/mock/MockedCache.java b/tests/src/cgeo/geocaching/test/mock/MockedCache.java index 8517c81..1a1127b 100644 --- a/tests/src/cgeo/geocaching/test/mock/MockedCache.java +++ b/tests/src/cgeo/geocaching/test/mock/MockedCache.java @@ -2,7 +2,7 @@ package cgeo.geocaching.test.mock; import cgeo.geocaching.ICache; import cgeo.geocaching.cgImage; -import cgeo.geocaching.cgTrackable; +import cgeo.geocaching.Trackable; import cgeo.geocaching.connector.gc.GCConstants; import cgeo.geocaching.geopoint.Geopoint; import cgeo.geocaching.utils.BaseUtils; @@ -134,7 +134,7 @@ public abstract class MockedCache implements ICache { } @Override - public List<cgTrackable> getInventory() { + public List<Trackable> getInventory() { return null; } |
