aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src/cgeo/geocaching/connector/gc/IconDecoderTest.java
diff options
context:
space:
mode:
authorBananeweizen <Bananeweizen@gmx.de>2012-04-12 19:31:13 +0200
committerBananeweizen <Bananeweizen@gmx.de>2012-04-12 19:31:13 +0200
commitb2f4fa6db9e262d087d715c497b1241833a0599d (patch)
treec3972bf51ce2776cfca4d564d05f5eb66a1fbe64 /tests/src/cgeo/geocaching/connector/gc/IconDecoderTest.java
parent90a0c8b78f121ddf7295a97e257aa2605a371434 (diff)
downloadcgeo-b2f4fa6db9e262d087d715c497b1241833a0599d.zip
cgeo-b2f4fa6db9e262d087d715c497b1241833a0599d.tar.gz
cgeo-b2f4fa6db9e262d087d715c497b1241833a0599d.tar.bz2
refactoring: remove the logging tag from settings
Diffstat (limited to 'tests/src/cgeo/geocaching/connector/gc/IconDecoderTest.java')
-rw-r--r--tests/src/cgeo/geocaching/connector/gc/IconDecoderTest.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/src/cgeo/geocaching/connector/gc/IconDecoderTest.java b/tests/src/cgeo/geocaching/connector/gc/IconDecoderTest.java
index 74704b3..3fa17f8 100644
--- a/tests/src/cgeo/geocaching/connector/gc/IconDecoderTest.java
+++ b/tests/src/cgeo/geocaching/connector/gc/IconDecoderTest.java
@@ -1,20 +1,19 @@
package cgeo.geocaching.connector.gc;
-import cgeo.geocaching.Settings;
import cgeo.geocaching.cgCache;
import cgeo.geocaching.enumerations.CacheType;
import cgeo.geocaching.test.AbstractResourceInstrumentationTestCase;
import cgeo.geocaching.test.R;
+import cgeo.geocaching.utils.Log;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
-import android.util.Log;
public class IconDecoderTest extends AbstractResourceInstrumentationTestCase {
public void testparseMapPNG14() {
final Bitmap bitmap = getBitmap(R.raw.tile14);
- Log.d(Settings.tag, "Bitmap=" + bitmap.getWidth() + "x" + bitmap.getHeight());
+ Log.d("Bitmap=" + bitmap.getWidth() + "x" + bitmap.getHeight());
assertEquals(CacheType.TRADITIONAL, parseMapPNG(bitmap, 97, 136, 14).getType());
assertEquals(CacheType.MYSTERY, parseMapPNG(bitmap, 226, 104, 14).getType());