Skip to content

Commit

Permalink
Removed debug logging.
Browse files Browse the repository at this point in the history
  • Loading branch information
litrik committed Mar 24, 2012
1 parent d572e8e commit 6579fff
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/be/norio/twunch/android/ui/TwunchesMapActivity.java
Expand Up @@ -75,7 +75,6 @@ public void onCreate(Bundle savedInstanceState) {
itemizedoverlay = new TwunchItemizedOverlay(drawable, this);
while (mCursor.moveToNext()) {
if (mCursor.getFloat(TwunchesQuery.LATITUDE) != 0 && mCursor.getFloat(TwunchesQuery.LONGITUDE) != 0) {
System.out.println(mCursor.getFloat(TwunchesQuery.LATITUDE) + ":" + mCursor.getFloat(TwunchesQuery.LONGITUDE));
GeoPoint point = new GeoPoint(new Double(mCursor.getFloat(TwunchesQuery.LATITUDE) * 1E6).intValue(), new Double(
mCursor.getFloat(TwunchesQuery.LONGITUDE) * 1E6).intValue());
TwunchOverlayItem overlayitem = new TwunchOverlayItem(point, mCursor.getInt(0));
Expand Down

0 comments on commit 6579fff

Please sign in to comment.