diff options
author | Christopher Baines <cbaines8@gmail.com> | 2012-03-12 10:31:33 +0000 |
---|---|---|
committer | Christopher Baines <cbaines8@gmail.com> | 2012-03-12 10:31:33 +0000 |
commit | 9f1db756efbe2fdbf540b17e2eb93d7bc8a6ae37 (patch) | |
tree | a077eb44f6a028922f944e5a6760b5af85e8b894 | |
parent | a45c1858d22622ef80253743c15c5a28760dbbae (diff) | |
download | southamptonuniversitymap-9f1db756efbe2fdbf540b17e2eb93d7bc8a6ae37.tar southamptonuniversitymap-9f1db756efbe2fdbf540b17e2eb93d7bc8a6ae37.tar.gz |
Removed overlay test code.
-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) { |