diff options
-rw-r--r-- | src/net/cbaines/suma/BuildingNumOverlay.java | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/net/cbaines/suma/BuildingNumOverlay.java b/src/net/cbaines/suma/BuildingNumOverlay.java index 6acffa1..8ec5ec4 100644 --- a/src/net/cbaines/suma/BuildingNumOverlay.java +++ b/src/net/cbaines/suma/BuildingNumOverlay.java @@ -239,20 +239,6 @@ public class BuildingNumOverlay extends Overlay implements Preferences, OnShared } } - /** - * <b>You can prevent all(!) other Touch-related events from happening!</b><br /> - * By default does nothing (<code>return false</code>). If you handled the Event, return <code>true</code>, otherwise return - * <code>false</code>. If you returned <code>true</code> none of the following Overlays or the underlying {@link MapView} has - * the chance to handle this event. - */ - public boolean onTouchEvent(final MotionEvent event, final MapView mapView) { - Log.i(TAG, "getAction " + event.getAction()); - Log.i(TAG, "getDownTime " + event.getDownTime()); - Log.i(TAG, "getPointerCount " + event.getPointerCount()); - - return true; - } - @Override public boolean onLongPress(final MotionEvent event, final MapView mapView) { |