From dc0d161c1414641f0b44ad68342575fbc373c18e Mon Sep 17 00:00:00 2001 From: Hannes Janetzek Date: Sat, 15 Feb 2014 14:17:00 +0100 Subject: [PATCH] cleanup: MapView --- .../src/org/oscim/android/MapView.java | 22 ------------------- 1 file changed, 22 deletions(-) diff --git a/vtm-android/src/org/oscim/android/MapView.java b/vtm-android/src/org/oscim/android/MapView.java index 9d413129..e1216991 100644 --- a/vtm-android/src/org/oscim/android/MapView.java +++ b/vtm-android/src/org/oscim/android/MapView.java @@ -1,5 +1,4 @@ /* - * Copyright 2010, 2011, 2012 mapsforge.org * Copyright 2012 Hannes Janetzek * * This file is part of the OpenScienceMap project (http://www.opensciencemap.org). @@ -38,10 +37,6 @@ import android.view.GestureDetector.OnGestureListener; import android.view.MotionEvent; import android.widget.RelativeLayout; -/** - * A MapView shows a map on the display of the device. It handles all user input - * and touch gestures to move and zoom the map. - */ public class MapView extends RelativeLayout { static final Logger log = LoggerFactory.getLogger(MapView.class); @@ -64,27 +59,10 @@ public class MapView extends RelativeLayout { boolean mInitialized = false; - /** - * @param context - * the enclosing MapActivity instance. - * @throws IllegalArgumentException - * if the context object is not an instance of - * {@link MapActivity} . - */ public MapView(Context context) { this(context, null); } - /** - * @param context - * the enclosing MapActivity instance. - * @param attributeSet - * a set of attributes. - * @throws IllegalArgumentException - * if the context object is not an instance of - * {@link MapActivity} . - */ - public MapView(Context context, AttributeSet attributeSet) { super(context, attributeSet);