diff --git a/CHANGELOG.md b/CHANGELOG.md index 48867c9e2..07b0cacbd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ Please add unreleased changes in the following style: - PR Title ([#___](https://github.com/maplibre/maplibre-react-native/pull/___)) ``` +- chore: remove created-by headers and update LICENSE/Copyright ([#518](https://github.com/maplibre/maplibre-react-native/pull/518)) + ## 10.0.0-alpha.29 - ci: fail on lint warning ([#522](https://github.com/maplibre/maplibre-react-native/pull/522)) diff --git a/LICENSE.md b/LICENSE.md index aba844f7f..87f757cb5 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,9 +1,9 @@ Copyright (c) 2022 MapLibre contributors +Copyright (c) 2015-2020 Mapbox + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -This project was originally forked from https://github.com/rnmapbox/maps, also under the MIT license, but without a copyright holder notice. diff --git a/android/src/main/java/org/maplibre/reactnative/MLRNPackage.java b/android/src/main/java/org/maplibre/reactnative/MLRNPackage.java index db15ceb20..6eb38e038 100644 --- a/android/src/main/java/org/maplibre/reactnative/MLRNPackage.java +++ b/android/src/main/java/org/maplibre/reactnative/MLRNPackage.java @@ -37,10 +37,6 @@ import org.maplibre.reactnative.modules.MLRNOfflineModule; import org.maplibre.reactnative.modules.MLRNSnapshotModule; -/** - * Created by nickitaliano on 8/18/17. - */ - public class MLRNPackage implements ReactPackage { @Override diff --git a/android/src/main/java/org/maplibre/reactnative/components/AbstractEventEmitter.java b/android/src/main/java/org/maplibre/reactnative/components/AbstractEventEmitter.java index 31d67dd90..370d6cb8d 100644 --- a/android/src/main/java/org/maplibre/reactnative/components/AbstractEventEmitter.java +++ b/android/src/main/java/org/maplibre/reactnative/components/AbstractEventEmitter.java @@ -20,10 +20,6 @@ import javax.annotation.Nullable; import javax.annotation.Nonnull; -/** - * Created by nickitaliano on 8/23/17. - */ - abstract public class AbstractEventEmitter extends ViewGroupManager { private static final double BRIDGE_TIMEOUT_MS = 10; private Map mRateLimitedEvents; diff --git a/android/src/main/java/org/maplibre/reactnative/components/AbstractMapFeature.java b/android/src/main/java/org/maplibre/reactnative/components/AbstractMapFeature.java index 9a100cd6e..1fb85f28c 100644 --- a/android/src/main/java/org/maplibre/reactnative/components/AbstractMapFeature.java +++ b/android/src/main/java/org/maplibre/reactnative/components/AbstractMapFeature.java @@ -5,10 +5,6 @@ import com.facebook.react.views.view.ReactViewGroup; import org.maplibre.reactnative.components.mapview.MLRNMapView; -/** - * Created by nickitaliano on 9/6/17. - */ - public abstract class AbstractMapFeature extends ReactViewGroup { public AbstractMapFeature(Context context) { super(context); diff --git a/android/src/main/java/org/maplibre/reactnative/components/annotation/MLRNCallout.java b/android/src/main/java/org/maplibre/reactnative/components/annotation/MLRNCallout.java index 1faadf778..ffa0404d1 100644 --- a/android/src/main/java/org/maplibre/reactnative/components/annotation/MLRNCallout.java +++ b/android/src/main/java/org/maplibre/reactnative/components/annotation/MLRNCallout.java @@ -4,10 +4,6 @@ import com.facebook.react.views.view.ReactViewGroup; -/** - * Created by nickitaliano on 10/11/17. - */ - public class MLRNCallout extends ReactViewGroup { public MLRNCallout(Context context) { super(context); diff --git a/android/src/main/java/org/maplibre/reactnative/components/annotation/MLRNCalloutManager.java b/android/src/main/java/org/maplibre/reactnative/components/annotation/MLRNCalloutManager.java index c5dd2ae03..0230a9a4d 100644 --- a/android/src/main/java/org/maplibre/reactnative/components/annotation/MLRNCalloutManager.java +++ b/android/src/main/java/org/maplibre/reactnative/components/annotation/MLRNCalloutManager.java @@ -3,10 +3,6 @@ import com.facebook.react.uimanager.ThemedReactContext; import com.facebook.react.uimanager.ViewGroupManager; -/** - * Created by nickitaliano on 10/11/17. - */ - public class MLRNCalloutManager extends ViewGroupManager { public static final String REACT_CLASS = "MLRNCallout"; diff --git a/android/src/main/java/org/maplibre/reactnative/components/annotation/MLRNPointAnnotationManager.java b/android/src/main/java/org/maplibre/reactnative/components/annotation/MLRNPointAnnotationManager.java index e674bae20..e09b27624 100644 --- a/android/src/main/java/org/maplibre/reactnative/components/annotation/MLRNPointAnnotationManager.java +++ b/android/src/main/java/org/maplibre/reactnative/components/annotation/MLRNPointAnnotationManager.java @@ -14,10 +14,6 @@ import java.util.Map; -/** - * Created by nickitaliano on 9/27/17. - */ - public class MLRNPointAnnotationManager extends AbstractEventEmitter { public static final String REACT_CLASS = "MLRNPointAnnotation"; diff --git a/android/src/main/java/org/maplibre/reactnative/components/camera/CameraStop.java b/android/src/main/java/org/maplibre/reactnative/components/camera/CameraStop.java index f0e291b78..bc9139578 100644 --- a/android/src/main/java/org/maplibre/reactnative/components/camera/CameraStop.java +++ b/android/src/main/java/org/maplibre/reactnative/components/camera/CameraStop.java @@ -13,17 +13,11 @@ import org.maplibre.android.geometry.LatLng; import org.maplibre.android.geometry.LatLngBounds; import org.maplibre.android.maps.MapLibreMap; + import org.maplibre.reactnative.components.camera.constants.CameraMode; import org.maplibre.reactnative.utils.GeoJSONUtils; - import org.maplibre.reactnative.components.mapview.MLRNMapView; - - -/** - * Created by nickitaliano on 9/5/17. - */ - public class CameraStop { private Double mBearing; private Double mTilt; diff --git a/android/src/main/java/org/maplibre/reactnative/components/camera/CameraUpdateItem.java b/android/src/main/java/org/maplibre/reactnative/components/camera/CameraUpdateItem.java index 1d95bbcf1..e1bd57724 100644 --- a/android/src/main/java/org/maplibre/reactnative/components/camera/CameraUpdateItem.java +++ b/android/src/main/java/org/maplibre/reactnative/components/camera/CameraUpdateItem.java @@ -17,10 +17,6 @@ import java.util.concurrent.TimeUnit; import java.util.concurrent.TimeoutException; -/** - * Created by nickitaliano on 9/5/17. - */ - public class CameraUpdateItem implements RunnableFuture { private int mDuration; private MapLibreMap.CancelableCallback mCallback; diff --git a/android/src/main/java/org/maplibre/reactnative/components/camera/CameraUpdateQueue.java b/android/src/main/java/org/maplibre/reactnative/components/camera/CameraUpdateQueue.java index 1098c6d0b..59f628735 100644 --- a/android/src/main/java/org/maplibre/reactnative/components/camera/CameraUpdateQueue.java +++ b/android/src/main/java/org/maplibre/reactnative/components/camera/CameraUpdateQueue.java @@ -12,11 +12,6 @@ import java.util.concurrent.Executors; import java.util.concurrent.FutureTask; - -/** - * Created by nickitaliano on 9/5/17. - */ - public class CameraUpdateQueue { private Queue mQueue; diff --git a/android/src/main/java/org/maplibre/reactnative/components/camera/constants/CameraMode.java b/android/src/main/java/org/maplibre/reactnative/components/camera/constants/CameraMode.java index 4b2cc1d4c..c06e2a15b 100644 --- a/android/src/main/java/org/maplibre/reactnative/components/camera/constants/CameraMode.java +++ b/android/src/main/java/org/maplibre/reactnative/components/camera/constants/CameraMode.java @@ -5,10 +5,6 @@ import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; -/** - * Created by nickitaliano on 9/6/17. - */ - public class CameraMode { @IntDef({ FLIGHT, EASE, LINEAR, NONE }) diff --git a/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNAndroidTextureMapView.java b/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNAndroidTextureMapView.java index 3dbf8744e..152b452d6 100644 --- a/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNAndroidTextureMapView.java +++ b/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNAndroidTextureMapView.java @@ -2,9 +2,6 @@ import android.content.Context; import org.maplibre.android.maps.MapLibreMapOptions; -/** - * Created by hernanmateo on 12/11/18. - */ @SuppressWarnings({"MissingPermission"}) public class MLRNAndroidTextureMapView extends MLRNMapView { diff --git a/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNAndroidTextureMapViewManager.java b/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNAndroidTextureMapViewManager.java index 4c23d4f11..88634f4ea 100644 --- a/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNAndroidTextureMapViewManager.java +++ b/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNAndroidTextureMapViewManager.java @@ -5,10 +5,6 @@ import com.facebook.react.uimanager.ThemedReactContext; import com.facebook.react.uimanager.annotations.ReactProp; -/** - * Created by hernanmateo on 12/11/18. - */ - public class MLRNAndroidTextureMapViewManager extends MLRNMapViewManager { public static final String LOG_TAG = "MLRNAndroidTextureMapViewManager"; public static final String REACT_CLASS = "MLRNAndroidTextureMapView"; diff --git a/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNMapView.java b/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNMapView.java index c242d8046..4ea17fd5f 100644 --- a/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNMapView.java +++ b/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNMapView.java @@ -87,10 +87,6 @@ import static org.maplibre.android.style.layers.PropertyFactory.visibility; import static org.maplibre.reactnative.modules.MLRNOfflineModule.DEFAULT_STYLE_URL; -/** - * Created by nickitaliano on 8/18/17. - */ - @SuppressWarnings({ "MissingPermission" }) public class MLRNMapView extends MapView implements OnMapReadyCallback, MapLibreMap.OnMapClickListener, MapLibreMap.OnMapLongClickListener, MapView.OnCameraIsChangingListener, MapView.OnCameraDidChangeListener, diff --git a/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNMapViewManager.java b/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNMapViewManager.java index d51f3ac79..9e34fb958 100644 --- a/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNMapViewManager.java +++ b/android/src/main/java/org/maplibre/reactnative/components/mapview/MLRNMapViewManager.java @@ -33,10 +33,6 @@ import static com.facebook.react.bridge.UiThreadUtil.runOnUiThread; -/** - * Created by nickitaliano on 8/18/17. - */ - public class MLRNMapViewManager extends AbstractEventEmitter { public static final String LOG_TAG = "MLRNMapViewManager"; public static final String REACT_CLASS = "MLRNMapView"; diff --git a/android/src/main/java/org/maplibre/reactnative/components/mapview/helpers/CameraChangeTracker.java b/android/src/main/java/org/maplibre/reactnative/components/mapview/helpers/CameraChangeTracker.java index 3b552acdc..b92f6b598 100644 --- a/android/src/main/java/org/maplibre/reactnative/components/mapview/helpers/CameraChangeTracker.java +++ b/android/src/main/java/org/maplibre/reactnative/components/mapview/helpers/CameraChangeTracker.java @@ -2,10 +2,6 @@ import android.util.Log; -/** - * Created by nickitaliano on 12/12/17. - */ - public class CameraChangeTracker { public static final int USER_GESTURE = 1; public static final int DEVELOPER_ANIMATION = 2; diff --git a/android/src/main/java/org/maplibre/reactnative/components/styles/MLRNStyle.java b/android/src/main/java/org/maplibre/reactnative/components/styles/MLRNStyle.java index d8836781f..bc8662e56 100644 --- a/android/src/main/java/org/maplibre/reactnative/components/styles/MLRNStyle.java +++ b/android/src/main/java/org/maplibre/reactnative/components/styles/MLRNStyle.java @@ -14,10 +14,6 @@ import java.util.List; import java.util.Map; -/** - * Created by nickitaliano on 9/12/17. - */ - public class MLRNStyle { private Context mContext; private ReadableMap mReactStyle; diff --git a/android/src/main/java/org/maplibre/reactnative/components/styles/MLRNStyleFunctionParser.java b/android/src/main/java/org/maplibre/reactnative/components/styles/MLRNStyleFunctionParser.java index f2bd50ffb..ae7c83eda 100644 --- a/android/src/main/java/org/maplibre/reactnative/components/styles/MLRNStyleFunctionParser.java +++ b/android/src/main/java/org/maplibre/reactnative/components/styles/MLRNStyleFunctionParser.java @@ -20,10 +20,6 @@ import java.util.List; import java.util.Map; -/** - * Created by nickitaliano on 9/12/17. - */ - public abstract class MLRNStyleFunctionParser { private MLRNStyleValue mStyleValue; diff --git a/android/src/main/java/org/maplibre/reactnative/components/styles/MLRNStyleValue.java b/android/src/main/java/org/maplibre/reactnative/components/styles/MLRNStyleValue.java index 582241073..e977839e0 100644 --- a/android/src/main/java/org/maplibre/reactnative/components/styles/MLRNStyleValue.java +++ b/android/src/main/java/org/maplibre/reactnative/components/styles/MLRNStyleValue.java @@ -14,10 +14,6 @@ import org.maplibre.reactnative.utils.ExpressionParser; import org.maplibre.reactnative.utils.ImageEntry; -/** - * Created by nickitaliano on 9/12/17. - */ - public class MLRNStyleValue { private String mType; diff --git a/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNBackgroundLayer.java b/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNBackgroundLayer.java index 9c2892af1..99ecc63ee 100644 --- a/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNBackgroundLayer.java +++ b/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNBackgroundLayer.java @@ -6,10 +6,6 @@ import org.maplibre.reactnative.components.styles.MLRNStyle; import org.maplibre.reactnative.components.styles.MLRNStyleFactory; -/** - * Created by nickitaliano on 9/25/17. - */ - public class MLRNBackgroundLayer extends MLRNLayer { public MLRNBackgroundLayer(Context context) { super(context); diff --git a/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNBackgroundLayerManager.java b/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNBackgroundLayerManager.java index 689f087c2..d4eafc773 100644 --- a/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNBackgroundLayerManager.java +++ b/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNBackgroundLayerManager.java @@ -5,10 +5,6 @@ import com.facebook.react.uimanager.ViewGroupManager; import com.facebook.react.uimanager.annotations.ReactProp; -/** - * Created by nickitaliano on 9/25/17. - */ - public class MLRNBackgroundLayerManager extends ViewGroupManager { public static final String REACT_CLASS = "MLRNBackgroundLayer"; diff --git a/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNCircleLayer.java b/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNCircleLayer.java index a576da673..b223e3f69 100644 --- a/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNCircleLayer.java +++ b/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNCircleLayer.java @@ -8,10 +8,6 @@ import org.maplibre.reactnative.components.styles.MLRNStyle; import org.maplibre.reactnative.components.styles.MLRNStyleFactory; -/** - * Created by nickitaliano on 9/18/17. - */ - public class MLRNCircleLayer extends MLRNLayer { private String mSourceLayerID; diff --git a/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNCircleLayerManager.java b/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNCircleLayerManager.java index d9029224f..98c4d83ae 100644 --- a/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNCircleLayerManager.java +++ b/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNCircleLayerManager.java @@ -8,10 +8,6 @@ import java.util.ArrayList; -/** - * Created by nickitaliano on 9/18/17. - */ - public class MLRNCircleLayerManager extends ViewGroupManager { public static final String REACT_CLASS = "MLRNCircleLayer"; diff --git a/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNFillExtrusionLayer.java b/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNFillExtrusionLayer.java index e42a2b475..c98c55446 100644 --- a/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNFillExtrusionLayer.java +++ b/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNFillExtrusionLayer.java @@ -8,10 +8,6 @@ import org.maplibre.reactnative.components.styles.MLRNStyle; import org.maplibre.reactnative.components.styles.MLRNStyleFactory; -/** - * Created by nickitaliano on 9/15/17. - */ - public class MLRNFillExtrusionLayer extends MLRNLayer { private String mSourceLayerID; diff --git a/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNFillExtrusionLayerManager.java b/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNFillExtrusionLayerManager.java index 0771125d8..9b2479d5d 100644 --- a/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNFillExtrusionLayerManager.java +++ b/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNFillExtrusionLayerManager.java @@ -11,10 +11,6 @@ import java.util.HashMap; import java.util.Map; -/** - * Created by nickitaliano on 9/15/17. - */ - public class MLRNFillExtrusionLayerManager extends ViewGroupManager { public static final String REACT_CLASS = "MLRNFillExtrusionLayer"; diff --git a/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNFillLayer.java b/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNFillLayer.java index 303ebd445..be058ff09 100644 --- a/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNFillLayer.java +++ b/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNFillLayer.java @@ -8,10 +8,6 @@ import org.maplibre.reactnative.components.styles.MLRNStyle; import org.maplibre.reactnative.components.styles.MLRNStyleFactory; -/** - * Created by nickitaliano on 9/8/17. - */ - public class MLRNFillLayer extends MLRNLayer { private String mSourceLayerID; diff --git a/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNFillLayerManager.java b/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNFillLayerManager.java index 81649d427..2652155b3 100644 --- a/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNFillLayerManager.java +++ b/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNFillLayerManager.java @@ -11,10 +11,6 @@ import java.util.HashMap; import java.util.Map; -/** - * Created by nickitaliano on 9/8/17. - */ - public class MLRNFillLayerManager extends ViewGroupManager { public static final String REACT_CLASS = "MLRNFillLayer"; diff --git a/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNHeatmapLayer.java b/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNHeatmapLayer.java index 7d1d160a7..3457318eb 100644 --- a/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNHeatmapLayer.java +++ b/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNHeatmapLayer.java @@ -8,10 +8,6 @@ import org.maplibre.reactnative.components.styles.MLRNStyle; import org.maplibre.reactnative.components.styles.MLRNStyleFactory; -/** - * Created by dhee9000 on 6/8/2019 - */ - public class MLRNHeatmapLayer extends MLRNLayer { private String mSourceLayerID; diff --git a/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNHeatmapLayerManager.java b/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNHeatmapLayerManager.java index c2972fd2d..60edc508d 100644 --- a/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNHeatmapLayerManager.java +++ b/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNHeatmapLayerManager.java @@ -8,10 +8,6 @@ import java.util.ArrayList; -/** - * Created by dhee9000 on 6/8/2019 - */ - public class MLRNHeatmapLayerManager extends ViewGroupManager{ public static final String REACT_CLASS = "MLRNHeatmapLayer"; diff --git a/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNLayer.java b/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNLayer.java index 9e302928d..dd747f5b3 100644 --- a/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNLayer.java +++ b/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNLayer.java @@ -20,10 +20,6 @@ import java.util.HashSet; import java.util.Set; -/** - * Created by nickitaliano on 9/7/17. - */ - public abstract class MLRNLayer extends AbstractMapFeature { public static final String LOG_TAG = "MLRNLayer"; diff --git a/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNLineLayer.java b/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNLineLayer.java index 8f1d643a8..b60a3f049 100644 --- a/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNLineLayer.java +++ b/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNLineLayer.java @@ -8,10 +8,6 @@ import org.maplibre.reactnative.components.styles.MLRNStyle; import org.maplibre.reactnative.components.styles.MLRNStyleFactory; -/** - * Created by nickitaliano on 9/18/17. - */ - public class MLRNLineLayer extends MLRNLayer { private String mSourceLayerID; diff --git a/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNLineLayerManager.java b/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNLineLayerManager.java index 18f22cb93..74a8d372f 100644 --- a/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNLineLayerManager.java +++ b/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNLineLayerManager.java @@ -10,10 +10,6 @@ import java.util.Map; -/** - * Created by nickitaliano on 9/18/17. - */ - public class MLRNLineLayerManager extends ViewGroupManager { public static final String REACT_CLASS = "MLRNLineLayer"; diff --git a/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNRasterLayer.java b/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNRasterLayer.java index e8e94b8bd..aa6b19615 100644 --- a/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNRasterLayer.java +++ b/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNRasterLayer.java @@ -6,10 +6,6 @@ import org.maplibre.reactnative.components.styles.MLRNStyle; import org.maplibre.reactnative.components.styles.MLRNStyleFactory; -/** - * Created by nickitaliano on 9/25/17. - */ - public class MLRNRasterLayer extends MLRNLayer { public MLRNRasterLayer(Context context) { super(context); diff --git a/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNRasterLayerManager.java b/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNRasterLayerManager.java index 823e75660..c5a356de7 100644 --- a/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNRasterLayerManager.java +++ b/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNRasterLayerManager.java @@ -5,10 +5,6 @@ import com.facebook.react.uimanager.ViewGroupManager; import com.facebook.react.uimanager.annotations.ReactProp; -/** - * Created by nickitaliano on 9/25/17. - */ - public class MLRNRasterLayerManager extends ViewGroupManager { public static final String REACT_CLASS = "MLRNRasterLayer"; diff --git a/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNSymbolLayer.java b/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNSymbolLayer.java index 650dc71b1..fbb25a24a 100644 --- a/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNSymbolLayer.java +++ b/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNSymbolLayer.java @@ -8,10 +8,6 @@ import org.maplibre.reactnative.components.styles.MLRNStyle; import org.maplibre.reactnative.components.styles.MLRNStyleFactory; -/** - * Created by nickitaliano on 9/19/17. - */ - public class MLRNSymbolLayer extends MLRNLayer { private String mSourceLayerID; diff --git a/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNSymbolLayerManager.java b/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNSymbolLayerManager.java index c154a044c..435894bd0 100644 --- a/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNSymbolLayerManager.java +++ b/android/src/main/java/org/maplibre/reactnative/components/styles/layers/MLRNSymbolLayerManager.java @@ -6,10 +6,6 @@ import com.facebook.react.uimanager.ViewGroupManager; import com.facebook.react.uimanager.annotations.ReactProp; -/** - * Created by nickitaliano on 9/19/17. - */ - public class MLRNSymbolLayerManager extends ViewGroupManager { public static final String REACT_CLASS = "MLRNSymbolLayer"; diff --git a/android/src/main/java/org/maplibre/reactnative/components/styles/light/MLRNLight.java b/android/src/main/java/org/maplibre/reactnative/components/styles/light/MLRNLight.java index 27124a3bc..3f4e0b447 100644 --- a/android/src/main/java/org/maplibre/reactnative/components/styles/light/MLRNLight.java +++ b/android/src/main/java/org/maplibre/reactnative/components/styles/light/MLRNLight.java @@ -16,10 +16,6 @@ import java.util.HashMap; import java.util.Map; -/** - * Created by nickitaliano on 9/26/17. - */ - public class MLRNLight extends AbstractMapFeature { private MapLibreMap mMap; private ReadableMap mReactStyle; diff --git a/android/src/main/java/org/maplibre/reactnative/components/styles/light/MLRNLightManager.java b/android/src/main/java/org/maplibre/reactnative/components/styles/light/MLRNLightManager.java index c38ca0da9..925e7643d 100644 --- a/android/src/main/java/org/maplibre/reactnative/components/styles/light/MLRNLightManager.java +++ b/android/src/main/java/org/maplibre/reactnative/components/styles/light/MLRNLightManager.java @@ -5,10 +5,6 @@ import com.facebook.react.uimanager.ViewGroupManager; import com.facebook.react.uimanager.annotations.ReactProp; -/** - * Created by nickitaliano on 9/26/17. - */ - public class MLRNLightManager extends ViewGroupManager { public static final String REACT_CLASS = "MLRNLight"; diff --git a/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNImageSource.java b/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNImageSource.java index d4aae2dd6..acc161561 100644 --- a/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNImageSource.java +++ b/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNImageSource.java @@ -14,10 +14,6 @@ import android.net.Uri; -/** - * Created by nickitaliano on 11/29/17. - */ - public class MLRNImageSource extends MLRNSource { public static final String LOG_TAG = "MLRNImageSource"; diff --git a/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNImageSourceManager.java b/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNImageSourceManager.java index 2c367be1b..70e74615f 100644 --- a/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNImageSourceManager.java +++ b/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNImageSourceManager.java @@ -12,10 +12,6 @@ import org.maplibre.reactnative.utils.ConvertUtils; import org.maplibre.reactnative.utils.GeoJSONUtils; -/** - * Created by nickitaliano on 11/29/17. - */ - public class MLRNImageSourceManager extends ViewGroupManager { public static final String REACT_CLASS = "MLRNImageSource"; diff --git a/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNRasterSource.java b/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNRasterSource.java index d68ab9745..689c96642 100644 --- a/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNRasterSource.java +++ b/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNRasterSource.java @@ -7,10 +7,6 @@ import static org.maplibre.android.style.sources.RasterSource.DEFAULT_TILE_SIZE; -/** - * Created by nickitaliano on 9/25/17. - */ - public class MLRNRasterSource extends MLRNTileSource { private Integer mTileSize; diff --git a/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNRasterSourceManager.java b/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNRasterSourceManager.java index ec186dba3..fd0b39532 100644 --- a/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNRasterSourceManager.java +++ b/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNRasterSourceManager.java @@ -8,11 +8,6 @@ import javax.annotation.Nonnull; - -/** - * Created by nickitaliano on 9/25/17. - */ - public class MLRNRasterSourceManager extends MLRNTileSourceManager { public static final String REACT_CLASS = "MLRNRasterSource"; diff --git a/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNShapeSource.java b/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNShapeSource.java index 156bf7508..6fff58924 100644 --- a/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNShapeSource.java +++ b/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNShapeSource.java @@ -32,10 +32,6 @@ import java.util.List; import java.util.Map; -/** - * Created by nickitaliano on 9/19/17. - */ - public class MLRNShapeSource extends MLRNSource { private URL mURL; private MLRNShapeSourceManager mManager; diff --git a/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNShapeSourceManager.java b/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNShapeSourceManager.java index 1eb39b406..cad943188 100644 --- a/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNShapeSourceManager.java +++ b/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNShapeSourceManager.java @@ -36,10 +36,6 @@ import java.util.List; import java.util.Map; -/** - * Created by nickitaliano on 9/19/17. - */ - public class MLRNShapeSourceManager extends AbstractEventEmitter { public static final String LOG_TAG = "MLRNShapeSourceManager"; public static final String REACT_CLASS = "MLRNShapeSource"; diff --git a/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNSource.java b/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNSource.java index 5b22b35dd..887f63a25 100644 --- a/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNSource.java +++ b/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNSource.java @@ -23,10 +23,6 @@ import java.util.List; import java.util.Map; -/** - * Created by nickitaliano on 9/7/17. - */ - public abstract class MLRNSource extends AbstractMapFeature { public static final String DEFAULT_ID = "composite"; public static final String LOG_TAG = "MLRNSource"; diff --git a/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNVectorSource.java b/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNVectorSource.java index 0b512e06b..af771a1e1 100644 --- a/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNVectorSource.java +++ b/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNVectorSource.java @@ -15,10 +15,6 @@ import java.util.List; -/** - * Created by nickitaliano on 9/8/17. - */ - public class MLRNVectorSource extends MLRNTileSource { private MLRNVectorSourceManager mManager; diff --git a/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNVectorSourceManager.java b/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNVectorSourceManager.java index b0c893edb..ea4aad28c 100644 --- a/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNVectorSourceManager.java +++ b/android/src/main/java/org/maplibre/reactnative/components/styles/sources/MLRNVectorSourceManager.java @@ -16,10 +16,6 @@ import java.util.Map; -/** - * Created by nickitaliano on 9/8/17. - */ - public class MLRNVectorSourceManager extends MLRNTileSourceManager { public static final String REACT_CLASS = "MLRNVectorSource"; diff --git a/android/src/main/java/org/maplibre/reactnative/events/AbstractEvent.java b/android/src/main/java/org/maplibre/reactnative/events/AbstractEvent.java index e9b07eec0..612bf1411 100644 --- a/android/src/main/java/org/maplibre/reactnative/events/AbstractEvent.java +++ b/android/src/main/java/org/maplibre/reactnative/events/AbstractEvent.java @@ -5,10 +5,6 @@ import com.facebook.react.bridge.Arguments; import com.facebook.react.bridge.WritableMap; -/** - * Created by nickitaliano on 8/27/17. - */ - abstract public class AbstractEvent implements IEvent { private int mTagID; private String mEventType; diff --git a/android/src/main/java/org/maplibre/reactnative/events/AndroidCallbackEvent.java b/android/src/main/java/org/maplibre/reactnative/events/AndroidCallbackEvent.java index 5618872fe..da357a5df 100644 --- a/android/src/main/java/org/maplibre/reactnative/events/AndroidCallbackEvent.java +++ b/android/src/main/java/org/maplibre/reactnative/events/AndroidCallbackEvent.java @@ -6,10 +6,6 @@ import com.facebook.react.bridge.WritableMap; import org.maplibre.reactnative.events.constants.EventKeys; -/** - * Created by nickitaliano on 10/3/17. - */ - public class AndroidCallbackEvent extends AbstractEvent { private final WritableMap mPayload; diff --git a/android/src/main/java/org/maplibre/reactnative/events/FeatureClickEvent.java b/android/src/main/java/org/maplibre/reactnative/events/FeatureClickEvent.java index a9660e690..b45f5622e 100644 --- a/android/src/main/java/org/maplibre/reactnative/events/FeatureClickEvent.java +++ b/android/src/main/java/org/maplibre/reactnative/events/FeatureClickEvent.java @@ -16,10 +16,6 @@ import java.util.List; -/** - * Created by nickitaliano on 11/7/17. - */ - public class FeatureClickEvent extends AbstractEvent { private String mEventKey; private List mFeatures; diff --git a/android/src/main/java/org/maplibre/reactnative/events/IEvent.java b/android/src/main/java/org/maplibre/reactnative/events/IEvent.java index 88c7cb29d..637f3cccd 100644 --- a/android/src/main/java/org/maplibre/reactnative/events/IEvent.java +++ b/android/src/main/java/org/maplibre/reactnative/events/IEvent.java @@ -2,10 +2,6 @@ import com.facebook.react.bridge.WritableMap; -/** - * Created by nickitaliano on 8/23/17. - */ - public interface IEvent { int getID(); String getKey(); diff --git a/android/src/main/java/org/maplibre/reactnative/events/MapChangeEvent.java b/android/src/main/java/org/maplibre/reactnative/events/MapChangeEvent.java index 943e2bb39..391f5f7a7 100644 --- a/android/src/main/java/org/maplibre/reactnative/events/MapChangeEvent.java +++ b/android/src/main/java/org/maplibre/reactnative/events/MapChangeEvent.java @@ -7,10 +7,6 @@ import org.maplibre.reactnative.events.constants.EventKeys; -/** - * Created by nickitaliano on 8/27/17. - */ - public class MapChangeEvent extends AbstractEvent { private WritableMap mPayload; diff --git a/android/src/main/java/org/maplibre/reactnative/events/MapClickEvent.java b/android/src/main/java/org/maplibre/reactnative/events/MapClickEvent.java index 7f0c26bce..623cd9c61 100644 --- a/android/src/main/java/org/maplibre/reactnative/events/MapClickEvent.java +++ b/android/src/main/java/org/maplibre/reactnative/events/MapClickEvent.java @@ -12,10 +12,6 @@ import org.maplibre.reactnative.events.constants.EventTypes; import org.maplibre.reactnative.utils.GeoJSONUtils; -/** - * Created by nickitaliano on 8/23/17. - */ - public class MapClickEvent extends AbstractEvent { private LatLng mTouchedLatLng; private PointF mScreenPoint; diff --git a/android/src/main/java/org/maplibre/reactnative/events/MapUserTrackingModeEvent.java b/android/src/main/java/org/maplibre/reactnative/events/MapUserTrackingModeEvent.java index fc74ed989..be0641e0c 100644 --- a/android/src/main/java/org/maplibre/reactnative/events/MapUserTrackingModeEvent.java +++ b/android/src/main/java/org/maplibre/reactnative/events/MapUserTrackingModeEvent.java @@ -8,10 +8,6 @@ import org.maplibre.reactnative.events.constants.EventTypes; import org.maplibre.reactnative.location.UserTrackingMode; -/** - * Created by nickitaliano on 12/19/17. - */ - public class MapUserTrackingModeEvent extends AbstractEvent { private int mUserTrackingMode; diff --git a/android/src/main/java/org/maplibre/reactnative/events/OfflineEvent.java b/android/src/main/java/org/maplibre/reactnative/events/OfflineEvent.java index f4d8913dc..d68e27420 100644 --- a/android/src/main/java/org/maplibre/reactnative/events/OfflineEvent.java +++ b/android/src/main/java/org/maplibre/reactnative/events/OfflineEvent.java @@ -3,10 +3,6 @@ import com.facebook.react.bridge.ReadableMap; import com.facebook.react.bridge.WritableMap; -/** - * Created by nickitaliano on 10/24/17. - */ - public class OfflineEvent extends AbstractEvent { private String mEventKey; private WritableMap mPayload; diff --git a/android/src/main/java/org/maplibre/reactnative/events/PointAnnotationClickEvent.java b/android/src/main/java/org/maplibre/reactnative/events/PointAnnotationClickEvent.java index 03fc1947f..cf8eee76e 100644 --- a/android/src/main/java/org/maplibre/reactnative/events/PointAnnotationClickEvent.java +++ b/android/src/main/java/org/maplibre/reactnative/events/PointAnnotationClickEvent.java @@ -14,10 +14,6 @@ import org.maplibre.reactnative.utils.ConvertUtils; import org.maplibre.reactnative.utils.GeoJSONUtils; -/** - * Created by nickitaliano on 10/11/17. - */ - public class PointAnnotationClickEvent extends MapClickEvent { private MLRNPointAnnotation mView; private LatLng mTouchedLatLng; diff --git a/android/src/main/java/org/maplibre/reactnative/events/constants/EventKeys.java b/android/src/main/java/org/maplibre/reactnative/events/constants/EventKeys.java index ffa213d6c..b28cedc97 100644 --- a/android/src/main/java/org/maplibre/reactnative/events/constants/EventKeys.java +++ b/android/src/main/java/org/maplibre/reactnative/events/constants/EventKeys.java @@ -1,9 +1,5 @@ package org.maplibre.reactnative.events.constants; -/** - * Created by nickitaliano on 8/27/17. - */ - public class EventKeys { public static final String NAMESPACE = "rct.mapbox"; diff --git a/android/src/main/java/org/maplibre/reactnative/events/constants/EventTypes.java b/android/src/main/java/org/maplibre/reactnative/events/constants/EventTypes.java index 1e042ce73..e971c9582 100644 --- a/android/src/main/java/org/maplibre/reactnative/events/constants/EventTypes.java +++ b/android/src/main/java/org/maplibre/reactnative/events/constants/EventTypes.java @@ -1,9 +1,5 @@ package org.maplibre.reactnative.events.constants; -/** - * Created by nickitaliano on 8/24/17. - */ - public class EventTypes { // map event types public static final String MAP_CLICK = "press"; diff --git a/android/src/main/java/org/maplibre/reactnative/location/LocationManager.java b/android/src/main/java/org/maplibre/reactnative/location/LocationManager.java index b0eb961ad..f841f06b0 100644 --- a/android/src/main/java/org/maplibre/reactnative/location/LocationManager.java +++ b/android/src/main/java/org/maplibre/reactnative/location/LocationManager.java @@ -23,10 +23,6 @@ import java.util.List; import java.util.Locale; -/** - * Created by nickitaliano on 12/12/17. - */ - @SuppressWarnings({"MissingPermission"}) public class LocationManager implements LocationEngineCallback { static final long DEFAULT_FASTEST_INTERVAL_MILLIS = 1000; diff --git a/android/src/main/java/org/maplibre/reactnative/location/UserLocation.java b/android/src/main/java/org/maplibre/reactnative/location/UserLocation.java index 687249ab7..83d9a7b68 100644 --- a/android/src/main/java/org/maplibre/reactnative/location/UserLocation.java +++ b/android/src/main/java/org/maplibre/reactnative/location/UserLocation.java @@ -4,10 +4,6 @@ import org.maplibre.android.geometry.LatLng; -/** - * Created by nickitaliano on 12/13/17. - */ - public class UserLocation { private Location currentLocation; private Location previousLocation; diff --git a/android/src/main/java/org/maplibre/reactnative/location/UserLocationVerticalAlignment.java b/android/src/main/java/org/maplibre/reactnative/location/UserLocationVerticalAlignment.java index 2a339bccc..cc6b41236 100644 --- a/android/src/main/java/org/maplibre/reactnative/location/UserLocationVerticalAlignment.java +++ b/android/src/main/java/org/maplibre/reactnative/location/UserLocationVerticalAlignment.java @@ -1,9 +1,5 @@ package org.maplibre.reactnative.location; -/** - * Created by nickitaliano on 12/13/17. - */ - public class UserLocationVerticalAlignment { public static final int CENTER = 0; public static final int TOP = 1; diff --git a/android/src/main/java/org/maplibre/reactnative/location/UserTrackingMode.java b/android/src/main/java/org/maplibre/reactnative/location/UserTrackingMode.java index eb4685c78..e3825c6f2 100644 --- a/android/src/main/java/org/maplibre/reactnative/location/UserTrackingMode.java +++ b/android/src/main/java/org/maplibre/reactnative/location/UserTrackingMode.java @@ -7,10 +7,6 @@ import org.maplibre.android.location.modes.CameraMode; import org.maplibre.android.location.modes.RenderMode; -/** - * Created by nickitaliano on 12/13/17. - */ - public class UserTrackingMode { public static final int NONE = 0; public static final int FOLLOW = 1; diff --git a/android/src/main/java/org/maplibre/reactnative/location/UserTrackingState.java b/android/src/main/java/org/maplibre/reactnative/location/UserTrackingState.java index 56fb61945..4754b987d 100644 --- a/android/src/main/java/org/maplibre/reactnative/location/UserTrackingState.java +++ b/android/src/main/java/org/maplibre/reactnative/location/UserTrackingState.java @@ -1,9 +1,5 @@ package org.maplibre.reactnative.location; -/** - * Created by nickitaliano on 12/13/17. - */ - public class UserTrackingState { // The map view not yet tracked the user location public static final int POSSIBLE = 0; diff --git a/android/src/main/java/org/maplibre/reactnative/modules/MLRNModule.java b/android/src/main/java/org/maplibre/reactnative/modules/MLRNModule.java index e70303677..4ea0c9398 100644 --- a/android/src/main/java/org/maplibre/reactnative/modules/MLRNModule.java +++ b/android/src/main/java/org/maplibre/reactnative/modules/MLRNModule.java @@ -30,10 +30,6 @@ import javax.annotation.Nullable; -/** - * Created by nickitaliano on 8/18/17. - */ - @ReactModule(name = MLRNModule.REACT_CLASS) public class MLRNModule extends ReactContextBaseJavaModule { public static final String REACT_CLASS = "MLRNModule"; diff --git a/android/src/main/java/org/maplibre/reactnative/modules/MLRNOfflineModule.java b/android/src/main/java/org/maplibre/reactnative/modules/MLRNOfflineModule.java index 96f19b1c0..5f5e66e19 100644 --- a/android/src/main/java/org/maplibre/reactnative/modules/MLRNOfflineModule.java +++ b/android/src/main/java/org/maplibre/reactnative/modules/MLRNOfflineModule.java @@ -32,10 +32,6 @@ import java.io.UnsupportedEncodingException; import java.util.Locale; -/** - * Created by nickitaliano on 10/24/17. - */ - @ReactModule(name = MLRNOfflineModule.REACT_CLASS) public class MLRNOfflineModule extends ReactContextBaseJavaModule { public static final String REACT_CLASS = "MLRNOfflineModule"; diff --git a/android/src/main/java/org/maplibre/reactnative/modules/MLRNSnapshotModule.java b/android/src/main/java/org/maplibre/reactnative/modules/MLRNSnapshotModule.java index cf0079cad..c350caf17 100644 --- a/android/src/main/java/org/maplibre/reactnative/modules/MLRNSnapshotModule.java +++ b/android/src/main/java/org/maplibre/reactnative/modules/MLRNSnapshotModule.java @@ -34,10 +34,6 @@ import static android.content.Context.CONTEXT_IGNORE_SECURITY; -/** - * Created by nickitaliano on 11/30/17. - */ - @ReactModule(name = MLRNSnapshotModule.REACT_CLASS) public class MLRNSnapshotModule extends ReactContextBaseJavaModule { public static final String REACT_CLASS = "MLRNSnapshotModule"; diff --git a/android/src/main/java/org/maplibre/reactnative/utils/BitmapUtils.java b/android/src/main/java/org/maplibre/reactnative/utils/BitmapUtils.java index eec229da8..ea3cbd2be 100644 --- a/android/src/main/java/org/maplibre/reactnative/utils/BitmapUtils.java +++ b/android/src/main/java/org/maplibre/reactnative/utils/BitmapUtils.java @@ -20,10 +20,6 @@ import java.io.OutputStream; import java.net.URL; -/** - * Created by nickitaliano on 10/9/17. - */ - public class BitmapUtils { public static final String LOG_TAG = "BitmapUtils"; diff --git a/android/src/main/java/org/maplibre/reactnative/utils/ConvertUtils.java b/android/src/main/java/org/maplibre/reactnative/utils/ConvertUtils.java index 5faaa05a5..fd6e9b0ab 100644 --- a/android/src/main/java/org/maplibre/reactnative/utils/ConvertUtils.java +++ b/android/src/main/java/org/maplibre/reactnative/utils/ConvertUtils.java @@ -23,10 +23,6 @@ import java.util.List; import java.util.Map; -/** - * Created by nickitaliano on 8/18/17. - */ - public class ConvertUtils { public static final String LOG_TAG = "ConvertUtils"; diff --git a/android/src/main/java/org/maplibre/reactnative/utils/DownloadMapImageTask.java b/android/src/main/java/org/maplibre/reactnative/utils/DownloadMapImageTask.java index ebd5ac798..1f0da7af3 100644 --- a/android/src/main/java/org/maplibre/reactnative/utils/DownloadMapImageTask.java +++ b/android/src/main/java/org/maplibre/reactnative/utils/DownloadMapImageTask.java @@ -33,10 +33,6 @@ import javax.annotation.Nullable; -/** - * Created by nickitaliano on 9/13/17. - */ - public class DownloadMapImageTask extends AsyncTask, Void, List>> { public static final String LOG_TAG = "DownloadMapImageTask"; diff --git a/android/src/main/java/org/maplibre/reactnative/utils/GeoJSONUtils.java b/android/src/main/java/org/maplibre/reactnative/utils/GeoJSONUtils.java index c1532af2b..74a67d436 100644 --- a/android/src/main/java/org/maplibre/reactnative/utils/GeoJSONUtils.java +++ b/android/src/main/java/org/maplibre/reactnative/utils/GeoJSONUtils.java @@ -23,10 +23,6 @@ import java.util.ArrayList; import java.util.List; -/** - * Created by nickitaliano on 11/7/17. - */ - public class GeoJSONUtils { public static WritableMap fromFeature(Feature feature) { WritableMap map = Arguments.createMap(); diff --git a/android/src/main/java/org/maplibre/reactnative/utils/GeoViewport.java b/android/src/main/java/org/maplibre/reactnative/utils/GeoViewport.java index da7787dbf..f66b47117 100644 --- a/android/src/main/java/org/maplibre/reactnative/utils/GeoViewport.java +++ b/android/src/main/java/org/maplibre/reactnative/utils/GeoViewport.java @@ -7,7 +7,6 @@ import org.maplibre.android.geometry.VisibleRegion; /** - * Created by nickitaliano on 1/5/18. * Ported from https://github.com/mapbox/geo-viewport/blob/master/index.js * This port only assumes we will have 512 vector tile sizes */ diff --git a/android/src/main/java/org/maplibre/reactnative/utils/ResourceUtils.java b/android/src/main/java/org/maplibre/reactnative/utils/ResourceUtils.java index 792daee95..37a27d952 100644 --- a/android/src/main/java/org/maplibre/reactnative/utils/ResourceUtils.java +++ b/android/src/main/java/org/maplibre/reactnative/utils/ResourceUtils.java @@ -5,10 +5,6 @@ import android.graphics.drawable.Drawable; import androidx.core.content.ContextCompat; -/** - * Created by nickitaliano on 10/19/17. - */ - public class ResourceUtils { public static Drawable getDrawableByName(Context context, String resourceName) { if (context == null || resourceName == null || resourceName.isEmpty()) { diff --git a/android/src/main/java/org/maplibre/reactnative/utils/SimpleEventCallback.java b/android/src/main/java/org/maplibre/reactnative/utils/SimpleEventCallback.java index 806a66d01..8da9c9a62 100644 --- a/android/src/main/java/org/maplibre/reactnative/utils/SimpleEventCallback.java +++ b/android/src/main/java/org/maplibre/reactnative/utils/SimpleEventCallback.java @@ -5,10 +5,6 @@ import org.maplibre.reactnative.components.AbstractEventEmitter; import org.maplibre.reactnative.events.IEvent; -/** - * Created by nickitaliano on 8/31/17. - */ - public class SimpleEventCallback implements MapLibreMap.CancelableCallback { private AbstractEventEmitter mEventEmitter; private IEvent mEvent; diff --git a/android/src/main/java/org/maplibre/reactnative/utils/SphericalMercator.java b/android/src/main/java/org/maplibre/reactnative/utils/SphericalMercator.java index 71bb96c2f..94d47f1a8 100644 --- a/android/src/main/java/org/maplibre/reactnative/utils/SphericalMercator.java +++ b/android/src/main/java/org/maplibre/reactnative/utils/SphericalMercator.java @@ -11,7 +11,6 @@ import java.util.Map; /** - * Created by nickitaliano on 1/4/18. * Ported from https://github.com/mapbox/sphericalmercator/blob/master/sphericalmercator.js * This port only assumes we will have 512 vector tile sizes */ diff --git a/ios/MLRN/CameraMode.h b/ios/MLRN/CameraMode.h index fa9f5a82d..2edb3c758 100644 --- a/ios/MLRN/CameraMode.h +++ b/ios/MLRN/CameraMode.h @@ -1,11 +1,3 @@ -// -// CameraMode.h -// MLRN -// -// Created by Nick Italiano on 9/6/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import @interface CameraMode : NSObject diff --git a/ios/MLRN/CameraMode.m b/ios/MLRN/CameraMode.m index 3da6597e2..10e1a71b0 100644 --- a/ios/MLRN/CameraMode.m +++ b/ios/MLRN/CameraMode.m @@ -1,11 +1,3 @@ -// -// CameraMode.m -// MLRN -// -// Created by Nick Italiano on 9/6/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "CameraMode.h" @implementation CameraMode diff --git a/ios/MLRN/CameraStop.h b/ios/MLRN/CameraStop.h index 90dbb2f50..14fe9fc27 100644 --- a/ios/MLRN/CameraStop.h +++ b/ios/MLRN/CameraStop.h @@ -1,11 +1,3 @@ -// -// CameraStop.h -// MLRN -// -// Created by Nick Italiano on 9/5/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - @import MapLibre; #import "MLRNCamera.h" diff --git a/ios/MLRN/CameraStop.m b/ios/MLRN/CameraStop.m index e82c5e4b4..c66785c00 100644 --- a/ios/MLRN/CameraStop.m +++ b/ios/MLRN/CameraStop.m @@ -1,11 +1,3 @@ -// -// CameraStop.m -// MLRN -// -// Created by Nick Italiano on 9/5/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "CameraStop.h" #import "CameraMode.h" #import "MLRNUtils.h" diff --git a/ios/MLRN/CameraUpdateItem.h b/ios/MLRN/CameraUpdateItem.h index 53bc73a0e..e3617b581 100644 --- a/ios/MLRN/CameraUpdateItem.h +++ b/ios/MLRN/CameraUpdateItem.h @@ -1,11 +1,3 @@ -// -// CameraUpdateItem.h -// MLRN -// -// Created by Nick Italiano on 9/6/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "CameraStop.h" #import "MLRNMapView.h" diff --git a/ios/MLRN/CameraUpdateItem.m b/ios/MLRN/CameraUpdateItem.m index 97805e15d..335695ce1 100644 --- a/ios/MLRN/CameraUpdateItem.m +++ b/ios/MLRN/CameraUpdateItem.m @@ -1,15 +1,6 @@ -// -// CameraUpdateItem.m -// MLRN -// -// Created by Nick Italiano on 9/6/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "CameraUpdateItem.h" #import "CameraMode.h" - @interface MLNMapView(FlyToWithPadding) - (void)_flyToCamera:(MLNMapCamera *)camera edgePadding:(UIEdgeInsets)insets withDuration:(NSTimeInterval)duration peakAltitude:(CLLocationDistance)peakAltitude completionHandler:(nullable void (^)(void))completion; @end diff --git a/ios/MLRN/CameraUpdateQueue.h b/ios/MLRN/CameraUpdateQueue.h index 22c15db4c..fe550f1d9 100644 --- a/ios/MLRN/CameraUpdateQueue.h +++ b/ios/MLRN/CameraUpdateQueue.h @@ -1,11 +1,3 @@ -// -// CameraUpdateQueue.h -// MLRN -// -// Created by Nick Italiano on 9/6/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "CameraStop.h" #import "CameraUpdateItem.h" #import "MLRNMapView.h" diff --git a/ios/MLRN/CameraUpdateQueue.m b/ios/MLRN/CameraUpdateQueue.m index 552257a39..d73a2fa9f 100644 --- a/ios/MLRN/CameraUpdateQueue.m +++ b/ios/MLRN/CameraUpdateQueue.m @@ -1,11 +1,3 @@ -// -// CameraUpdateQueue.m -// MLRN -// -// Created by Nick Italiano on 9/6/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "CameraUpdateQueue.h" @implementation CameraUpdateQueue diff --git a/ios/MLRN/FilterParser.h b/ios/MLRN/FilterParser.h index 13c82bbf9..bb33bccc5 100644 --- a/ios/MLRN/FilterParser.h +++ b/ios/MLRN/FilterParser.h @@ -1,10 +1,3 @@ -// -// FilterParser.h -// MLRN -// -// Created by Nick Italiano on 10/3/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// #import @interface FilterParser : NSObject diff --git a/ios/MLRN/FilterParser.m b/ios/MLRN/FilterParser.m index e690a87ea..7b23b3180 100644 --- a/ios/MLRN/FilterParser.m +++ b/ios/MLRN/FilterParser.m @@ -1,11 +1,3 @@ -// -// FilterParser.m -// MLRN -// -// Created by Nick Italiano on 10/3/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "FilterParser.h" #import diff --git a/ios/MLRN/MLRN.h b/ios/MLRN/MLRN.h index 3c025dc00..8a742189e 100644 --- a/ios/MLRN/MLRN.h +++ b/ios/MLRN/MLRN.h @@ -1,11 +1,3 @@ -// -// MLRN.h -// MLRN -// -// Created by Nick Italiano on 8/23/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import @interface MLRN : NSObject diff --git a/ios/MLRN/MLRN.m b/ios/MLRN/MLRN.m index 9e9b184cf..722985157 100644 --- a/ios/MLRN/MLRN.m +++ b/ios/MLRN/MLRN.m @@ -1,11 +1,3 @@ -// -// MLRN.m -// MLRN -// -// Created by Nick Italiano on 8/23/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRN.h" @implementation MLRN diff --git a/ios/MLRN/MLRNBackgroundLayer.h b/ios/MLRN/MLRNBackgroundLayer.h index 5a5b6ebde..84be3f71b 100644 --- a/ios/MLRN/MLRNBackgroundLayer.h +++ b/ios/MLRN/MLRNBackgroundLayer.h @@ -1,11 +1,3 @@ -// -// MLRNBackgroundLayer.h -// MLRN -// -// Created by Nick Italiano on 9/25/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNLayer.h" @import MapLibre; diff --git a/ios/MLRN/MLRNBackgroundLayer.m b/ios/MLRN/MLRNBackgroundLayer.m index 55a1e9a84..0f2aadafe 100644 --- a/ios/MLRN/MLRNBackgroundLayer.m +++ b/ios/MLRN/MLRNBackgroundLayer.m @@ -1,11 +1,3 @@ -// -// MLRNBackgroundLayer.m -// MLRN -// -// Created by Nick Italiano on 9/25/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNBackgroundLayer.h" #import "MLRNStyle.h" diff --git a/ios/MLRN/MLRNBackgroundLayerManager.h b/ios/MLRN/MLRNBackgroundLayerManager.h index 92204bef8..cb453b7fc 100644 --- a/ios/MLRN/MLRNBackgroundLayerManager.h +++ b/ios/MLRN/MLRNBackgroundLayerManager.h @@ -1,11 +1,3 @@ -// -// MLRNBackgroundLayerManager.h -// MLRN -// -// Created by Nick Italiano on 9/25/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "ViewManager.h" @interface MLRNBackgroundLayerManager : ViewManager diff --git a/ios/MLRN/MLRNBackgroundLayerManager.m b/ios/MLRN/MLRNBackgroundLayerManager.m index caa6a9c8f..8b4c4d653 100644 --- a/ios/MLRN/MLRNBackgroundLayerManager.m +++ b/ios/MLRN/MLRNBackgroundLayerManager.m @@ -1,11 +1,3 @@ -// -// MLRNBackgroundLayerManager.m -// MLRN -// -// Created by Nick Italiano on 9/25/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNBackgroundLayerManager.h" #import "MLRNBackgroundLayer.h" diff --git a/ios/MLRN/MLRNCallout.h b/ios/MLRN/MLRNCallout.h index 56b2940ed..dcbce9129 100644 --- a/ios/MLRN/MLRNCallout.h +++ b/ios/MLRN/MLRNCallout.h @@ -1,11 +1,3 @@ -// -// MLRNCalloutView.h -// MLRN -// -// Created by Nick Italiano on 10/13/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import @import MapLibre; diff --git a/ios/MLRN/MLRNCallout.m b/ios/MLRN/MLRNCallout.m index 63429d1a1..47860540b 100644 --- a/ios/MLRN/MLRNCallout.m +++ b/ios/MLRN/MLRNCallout.m @@ -1,11 +1,3 @@ -// -// MLRNCalloutView.m -// MLRN -// -// Created by Nick Italiano on 10/13/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNCallout.h" #import diff --git a/ios/MLRN/MLRNCalloutManager.h b/ios/MLRN/MLRNCalloutManager.h index 80b8100b9..6448dbd53 100644 --- a/ios/MLRN/MLRNCalloutManager.h +++ b/ios/MLRN/MLRNCalloutManager.h @@ -1,11 +1,3 @@ -// -// MLRNCalloutViewManager.h -// MLRN -// -// Created by Nick Italiano on 10/13/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "ViewManager.h" @interface MLRNCalloutManager : ViewManager diff --git a/ios/MLRN/MLRNCalloutManager.m b/ios/MLRN/MLRNCalloutManager.m index 263d11650..2a16fb07b 100644 --- a/ios/MLRN/MLRNCalloutManager.m +++ b/ios/MLRN/MLRNCalloutManager.m @@ -1,11 +1,3 @@ -// -// MLRNCalloutViewManager.m -// MLRN -// -// Created by Nick Italiano on 10/13/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNCalloutManager.h" #import "MLRNCallout.h" diff --git a/ios/MLRN/MLRNCamera.h b/ios/MLRN/MLRNCamera.h index 8f52ae3ac..29fb11ebc 100644 --- a/ios/MLRN/MLRNCamera.h +++ b/ios/MLRN/MLRNCamera.h @@ -1,10 +1,3 @@ -// -// MLRNCamera.h -// MLRN -// -// Created by Nick Italiano on 6/22/18. -// Copyright © 2018 Mapbox Inc. All rights reserved. -// #import #import #import "MLRNMapView.h" diff --git a/ios/MLRN/MLRNCamera.m b/ios/MLRN/MLRNCamera.m index 4e0aac7dc..2a6f99922 100644 --- a/ios/MLRN/MLRNCamera.m +++ b/ios/MLRN/MLRNCamera.m @@ -1,11 +1,3 @@ -// -// MLRNCamera.m -// MLRN -// -// Created by Nick Italiano on 6/22/18. -// Copyright © 2018 Mapbox Inc. All rights reserved. -// - #import "MLRNCamera.h" #import "CameraStop.h" #import "CameraUpdateQueue.h" diff --git a/ios/MLRN/MLRNCameraManager.h b/ios/MLRN/MLRNCameraManager.h index 44eb0f320..a899410a7 100644 --- a/ios/MLRN/MLRNCameraManager.h +++ b/ios/MLRN/MLRNCameraManager.h @@ -1,11 +1,3 @@ -// -// MLRNCameraManager.h -// MLRN -// -// Created by Nick Italiano on 6/22/18. -// Copyright © 2018 Mapbox Inc. All rights reserved. -// - #import "ViewManager.h" @interface MLRNCameraManager : ViewManager diff --git a/ios/MLRN/MLRNCameraManager.m b/ios/MLRN/MLRNCameraManager.m index 662fc2796..dc3fa5a90 100644 --- a/ios/MLRN/MLRNCameraManager.m +++ b/ios/MLRN/MLRNCameraManager.m @@ -1,11 +1,3 @@ -// -// MLRNCameraManager.m -// MLRN -// -// Created by Nick Italiano on 6/22/18. -// Copyright © 2018 Mapbox Inc. All rights reserved. -// - #import "MLRNCameraManager.h" #import "MLRNCamera.h" diff --git a/ios/MLRN/MLRNCircleLayer.h b/ios/MLRN/MLRNCircleLayer.h index 68c380b57..1fe6608f9 100644 --- a/ios/MLRN/MLRNCircleLayer.h +++ b/ios/MLRN/MLRNCircleLayer.h @@ -1,11 +1,3 @@ -// -// MLRNCircleLayer.h -// MLRN -// -// Created by Nick Italiano on 9/18/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNVectorLayer.h" @interface MLRNCircleLayer : MLRNVectorLayer diff --git a/ios/MLRN/MLRNCircleLayer.m b/ios/MLRN/MLRNCircleLayer.m index 6c2a157db..2c1111219 100644 --- a/ios/MLRN/MLRNCircleLayer.m +++ b/ios/MLRN/MLRNCircleLayer.m @@ -1,11 +1,3 @@ -// -// MLRNCircleLayer.m -// MLRN -// -// Created by Nick Italiano on 9/18/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNCircleLayer.h" #import "MLRNStyle.h" diff --git a/ios/MLRN/MLRNCircleLayerManager.h b/ios/MLRN/MLRNCircleLayerManager.h index 89114672f..b6722ecf1 100644 --- a/ios/MLRN/MLRNCircleLayerManager.h +++ b/ios/MLRN/MLRNCircleLayerManager.h @@ -1,11 +1,3 @@ -// -// MLRNCircleLayerManager.h -// MLRN -// -// Created by Nick Italiano on 9/18/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "ViewManager.h" @interface MLRNCircleLayerManager : ViewManager diff --git a/ios/MLRN/MLRNCircleLayerManager.m b/ios/MLRN/MLRNCircleLayerManager.m index 52d254ea9..8e40ac824 100644 --- a/ios/MLRN/MLRNCircleLayerManager.m +++ b/ios/MLRN/MLRNCircleLayerManager.m @@ -1,11 +1,3 @@ -// -// MLRNCircleLayerManager.m -// MLRN -// -// Created by Nick Italiano on 9/18/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNCircleLayerManager.h" #import "MLRNCircleLayer.h" diff --git a/ios/MLRN/MLRNEvent.h b/ios/MLRN/MLRNEvent.h index f0bb7c43e..a331eff38 100644 --- a/ios/MLRN/MLRNEvent.h +++ b/ios/MLRN/MLRNEvent.h @@ -1,11 +1,3 @@ -// -// MLRNEvent.h -// MLRN -// -// Created by Nick Italiano on 8/25/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import #import "MLRNEventProtocol.h" diff --git a/ios/MLRN/MLRNEvent.m b/ios/MLRN/MLRNEvent.m index 4d42a68fe..9183940e8 100644 --- a/ios/MLRN/MLRNEvent.m +++ b/ios/MLRN/MLRNEvent.m @@ -1,11 +1,3 @@ -// -// MLRNEvent.m -// MLRN -// -// Created by Nick Italiano on 8/25/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNEvent.h" @implementation MLRNEvent diff --git a/ios/MLRN/MLRNEventProtocol.h b/ios/MLRN/MLRNEventProtocol.h index 1295e8a20..c6715d2cf 100644 --- a/ios/MLRN/MLRNEventProtocol.h +++ b/ios/MLRN/MLRNEventProtocol.h @@ -1,11 +1,3 @@ -// -// MLRNEvent.h -// MLRN -// -// Created by Nick Italiano on 8/25/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - @protocol MLRNEventProtocol @property (nonatomic, copy) NSString *type; diff --git a/ios/MLRN/MLRNEventTypes.h b/ios/MLRN/MLRNEventTypes.h index 9efe31b28..d864bc39b 100644 --- a/ios/MLRN/MLRNEventTypes.h +++ b/ios/MLRN/MLRNEventTypes.h @@ -1,11 +1,3 @@ -// -// MLRNEventTypes.h -// MLRN -// -// Created by Nick Italiano on 8/27/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import @interface MLRNEventTypes : NSObject diff --git a/ios/MLRN/MLRNEventTypes.m b/ios/MLRN/MLRNEventTypes.m index 53ff816b4..88692bf18 100644 --- a/ios/MLRN/MLRNEventTypes.m +++ b/ios/MLRN/MLRNEventTypes.m @@ -1,11 +1,3 @@ -// -// MLRNEventTypes.m -// MLRN -// -// Created by Nick Italiano on 8/27/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNEventTypes.h" @implementation MLRNEventTypes diff --git a/ios/MLRN/MLRNFillExtrusionLayer.h b/ios/MLRN/MLRNFillExtrusionLayer.h index 9de713a60..e05c7f6e5 100644 --- a/ios/MLRN/MLRNFillExtrusionLayer.h +++ b/ios/MLRN/MLRNFillExtrusionLayer.h @@ -1,11 +1,3 @@ -// -// MLRNFillExtrusionLayer.h -// MLRN -// -// Created by Nick Italiano on 9/15/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNVectorLayer.h" @import MapLibre; diff --git a/ios/MLRN/MLRNFillExtrusionLayer.m b/ios/MLRN/MLRNFillExtrusionLayer.m index 3924d9a4b..9f6fa9260 100644 --- a/ios/MLRN/MLRNFillExtrusionLayer.m +++ b/ios/MLRN/MLRNFillExtrusionLayer.m @@ -1,11 +1,3 @@ -// -// MLRNFillExtrusionLayer.m -// MLRN -// -// Created by Nick Italiano on 9/15/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNFillExtrusionLayer.h" #import "MLRNStyle.h" #import diff --git a/ios/MLRN/MLRNFillExtrusionLayerManager.h b/ios/MLRN/MLRNFillExtrusionLayerManager.h index 261e81657..e633cac95 100644 --- a/ios/MLRN/MLRNFillExtrusionLayerManager.h +++ b/ios/MLRN/MLRNFillExtrusionLayerManager.h @@ -1,11 +1,3 @@ -// -// MLRNFillExtrusionLayerManager.h -// MLRN -// -// Created by Nick Italiano on 9/15/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "ViewManager.h" @interface MLRNFillExtrusionLayerManager : ViewManager diff --git a/ios/MLRN/MLRNFillExtrusionLayerManager.m b/ios/MLRN/MLRNFillExtrusionLayerManager.m index dccc9e480..b893f2cdb 100644 --- a/ios/MLRN/MLRNFillExtrusionLayerManager.m +++ b/ios/MLRN/MLRNFillExtrusionLayerManager.m @@ -1,11 +1,3 @@ -// -// MLRNFillExtrusionLayerManager.m -// MLRN -// -// Created by Nick Italiano on 9/15/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNFillExtrusionLayerManager.h" #import "MLRNFillExtrusionLayer.h" diff --git a/ios/MLRN/MLRNFillLayer.h b/ios/MLRN/MLRNFillLayer.h index cf22af3eb..51fc65853 100644 --- a/ios/MLRN/MLRNFillLayer.h +++ b/ios/MLRN/MLRNFillLayer.h @@ -1,11 +1,3 @@ -// -// MLRNFillLayer.h -// MLRN -// -// Created by Nick Italiano on 9/8/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNVectorLayer.h" @import MapLibre; diff --git a/ios/MLRN/MLRNFillLayer.m b/ios/MLRN/MLRNFillLayer.m index 0190c25c7..3b6a62df1 100644 --- a/ios/MLRN/MLRNFillLayer.m +++ b/ios/MLRN/MLRNFillLayer.m @@ -1,11 +1,3 @@ -// -// MLRNFillLayer.m -// MLRN -// -// Created by Nick Italiano on 9/8/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNFillLayer.h" #import "MLRNStyle.h" #import diff --git a/ios/MLRN/MLRNFillLayerManager.h b/ios/MLRN/MLRNFillLayerManager.h index 56997a7e2..8d6294210 100644 --- a/ios/MLRN/MLRNFillLayerManager.h +++ b/ios/MLRN/MLRNFillLayerManager.h @@ -1,11 +1,3 @@ -// -// MLRNFillLayerManager.h -// MLRN -// -// Created by Nick Italiano on 9/8/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "ViewManager.h" @interface MLRNFillLayerManager : ViewManager diff --git a/ios/MLRN/MLRNFillLayerManager.m b/ios/MLRN/MLRNFillLayerManager.m index 6c9db6972..3d736b78a 100644 --- a/ios/MLRN/MLRNFillLayerManager.m +++ b/ios/MLRN/MLRNFillLayerManager.m @@ -1,11 +1,3 @@ -// -// MLRNFillLayerManager.m -// MLRN -// -// Created by Nick Italiano on 9/8/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNFillLayerManager.h" #import "MLRNFillLayer.h" diff --git a/ios/MLRN/MLRNHeatmapLayer.h b/ios/MLRN/MLRNHeatmapLayer.h index e7e3a4a66..1ae56a4a5 100644 --- a/ios/MLRN/MLRNHeatmapLayer.h +++ b/ios/MLRN/MLRNHeatmapLayer.h @@ -1,10 +1,3 @@ -// -// MLRNHeatmapLayer.h -// MLRN -// -// Created by Dheeraj Yalamanchili on 6/8/19. -// - #import "MLRNVectorLayer.h" @interface MLRNHeatmapLayer : MLRNVectorLayer diff --git a/ios/MLRN/MLRNHeatmapLayer.m b/ios/MLRN/MLRNHeatmapLayer.m index 0d19d8969..649e6136b 100644 --- a/ios/MLRN/MLRNHeatmapLayer.m +++ b/ios/MLRN/MLRNHeatmapLayer.m @@ -1,9 +1,3 @@ -// -// MLRNHeatmapLayer.m -// MLRN -// -// Created by Dheeraj Yalamanchili on 6/8/2019 - #import "MLRNHeatmapLayer.h" #import "MLRNStyle.h" diff --git a/ios/MLRN/MLRNHeatmapLayerManager.h b/ios/MLRN/MLRNHeatmapLayerManager.h index 1d77664cf..df364dae1 100644 --- a/ios/MLRN/MLRNHeatmapLayerManager.h +++ b/ios/MLRN/MLRNHeatmapLayerManager.h @@ -1,10 +1,3 @@ -// -// MLRNHeatmapLayerManager.h -// MLRN -// -// Created by Dheeraj Yalamanchili on 6/8/19. -// - #import "ViewManager.h" @interface MLRNHeatmapLayerManager : ViewManager diff --git a/ios/MLRN/MLRNHeatmapLayerManager.m b/ios/MLRN/MLRNHeatmapLayerManager.m index a3d099409..26aa44fab 100644 --- a/ios/MLRN/MLRNHeatmapLayerManager.m +++ b/ios/MLRN/MLRNHeatmapLayerManager.m @@ -1,10 +1,3 @@ -// -// MLRNHeatmapLayerManager.m -// MLRN -// -// Created by Dheeraj Yalamanchili on 6/8/19. -// - #import "MLRNHeatmapLayerManager.h" #import "MLRNHeatmapLayer.h" diff --git a/ios/MLRN/MLRNImageQueue.h b/ios/MLRN/MLRNImageQueue.h index cf4430313..b2eb883ab 100644 --- a/ios/MLRN/MLRNImageQueue.h +++ b/ios/MLRN/MLRNImageQueue.h @@ -1,11 +1,3 @@ -// -// MLRNImageQueue.h -// MLRN -// -// Created by Nick Italiano on 10/23/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import #import diff --git a/ios/MLRN/MLRNImageQueue.m b/ios/MLRN/MLRNImageQueue.m index 6f7d247d3..c1cbbf89f 100644 --- a/ios/MLRN/MLRNImageQueue.m +++ b/ios/MLRN/MLRNImageQueue.m @@ -1,11 +1,3 @@ -// -// MLRNImageQueue.m -// MLRN -// -// Created by Nick Italiano on 10/23/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNImageQueue.h" #import "MLRNImageQueueOperation.h" #import "MLRNUtils.h" diff --git a/ios/MLRN/MLRNImageQueueOperation.h b/ios/MLRN/MLRNImageQueueOperation.h index 1dbcbead4..e1158ec08 100644 --- a/ios/MLRN/MLRNImageQueueOperation.h +++ b/ios/MLRN/MLRNImageQueueOperation.h @@ -1,10 +1,3 @@ -// -// MLRNImageQueueOperation.h -// MLRN -// -// Created by Nick Italiano on 2/28/18. -// Copyright © 2018 Mapbox Inc. All rights reserved. -// #import @interface MLRNImageQueueOperation : NSBlockOperation diff --git a/ios/MLRN/MLRNImageQueueOperation.m b/ios/MLRN/MLRNImageQueueOperation.m index 90f505b50..4047f3351 100644 --- a/ios/MLRN/MLRNImageQueueOperation.m +++ b/ios/MLRN/MLRNImageQueueOperation.m @@ -1,11 +1,3 @@ -// -// MLRNImageQueueOperation.m -// MLRN -// -// Created by Nick Italiano on 2/28/18. -// Copyright © 2018 Mapbox Inc. All rights reserved. -// - #import "MLRNImageQueueOperation.h" diff --git a/ios/MLRN/MLRNImageSource.h b/ios/MLRN/MLRNImageSource.h index 6173b0c69..3cb5e82bc 100644 --- a/ios/MLRN/MLRNImageSource.h +++ b/ios/MLRN/MLRNImageSource.h @@ -1,11 +1,3 @@ -// -// MLRNImageSource.h -// MLRN -// -// Created by Nick Italiano on 11/29/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNSource.h" @interface MLRNImageSource : MLRNSource diff --git a/ios/MLRN/MLRNImageSource.m b/ios/MLRN/MLRNImageSource.m index 064681af2..18658404b 100644 --- a/ios/MLRN/MLRNImageSource.m +++ b/ios/MLRN/MLRNImageSource.m @@ -1,11 +1,3 @@ -// -// MLRNImageSource.m -// MLRN -// -// Created by Nick Italiano on 11/29/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNImageSource.h" @import MapLibre; diff --git a/ios/MLRN/MLRNImageSourceManager.h b/ios/MLRN/MLRNImageSourceManager.h index dbd42675d..f30984fac 100644 --- a/ios/MLRN/MLRNImageSourceManager.h +++ b/ios/MLRN/MLRNImageSourceManager.h @@ -1,11 +1,3 @@ -// -// MLRNImageSourceManager.h -// MLRN -// -// Created by Nick Italiano on 11/29/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "ViewManager.h" @interface MLRNImageSourceManager : ViewManager diff --git a/ios/MLRN/MLRNImageSourceManager.m b/ios/MLRN/MLRNImageSourceManager.m index f76c8744a..f98ca23c7 100644 --- a/ios/MLRN/MLRNImageSourceManager.m +++ b/ios/MLRN/MLRNImageSourceManager.m @@ -1,11 +1,3 @@ -// -// MLRNImageSourceManager.m -// MLRN -// -// Created by Nick Italiano on 11/29/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNImageSourceManager.h" #import "MLRNImageSource.h" diff --git a/ios/MLRN/MLRNImageUtils.h b/ios/MLRN/MLRNImageUtils.h index 4dce55952..fa1f0518c 100644 --- a/ios/MLRN/MLRNImageUtils.h +++ b/ios/MLRN/MLRNImageUtils.h @@ -1,11 +1,3 @@ -// -// RNMBImageUtils.h -// MLRN -// -// Created by Nick Italiano on 1/18/18. -// Copyright © 2018 Mapbox Inc. All rights reserved. -// - #import #import diff --git a/ios/MLRN/MLRNImageUtils.m b/ios/MLRN/MLRNImageUtils.m index ca48b15f8..f8b18a784 100644 --- a/ios/MLRN/MLRNImageUtils.m +++ b/ios/MLRN/MLRNImageUtils.m @@ -1,11 +1,3 @@ -// -// MLRNImageUtils.m -// MLRN -// -// Created by Nick Italiano on 1/18/18. -// Copyright © 2018 Mapbox Inc. All rights reserved. -// - #import "MLRNImageUtils.h" @implementation MLRNImageUtils diff --git a/ios/MLRN/MLRNLayer.h b/ios/MLRN/MLRNLayer.h index e78619e5a..05e0af43c 100644 --- a/ios/MLRN/MLRNLayer.h +++ b/ios/MLRN/MLRNLayer.h @@ -1,11 +1,3 @@ -// -// BaseLayer.h -// MLRN -// -// Created by Nick Italiano on 9/8/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import #import diff --git a/ios/MLRN/MLRNLayer.m b/ios/MLRN/MLRNLayer.m index 882388e8c..d4df06f9e 100644 --- a/ios/MLRN/MLRNLayer.m +++ b/ios/MLRN/MLRNLayer.m @@ -1,11 +1,3 @@ -// -// BaseLayer.m -// MLRN -// -// Created by Nick Italiano on 9/8/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNLayer.h" #import "MLRNSource.h" #import "MLRNStyleValue.h" diff --git a/ios/MLRN/MLRNLight.h b/ios/MLRN/MLRNLight.h index 51c4c43da..16823ad7b 100644 --- a/ios/MLRN/MLRNLight.h +++ b/ios/MLRN/MLRNLight.h @@ -1,11 +1,3 @@ -// -// MLRNLight.h -// MLRN -// -// Created by Nick Italiano on 9/26/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import @import MapLibre; diff --git a/ios/MLRN/MLRNLight.m b/ios/MLRN/MLRNLight.m index 23791a9d1..f5225e9fc 100644 --- a/ios/MLRN/MLRNLight.m +++ b/ios/MLRN/MLRNLight.m @@ -1,11 +1,3 @@ -// -// MLRNLight.m -// MLRN -// -// Created by Nick Italiano on 9/26/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNLight.h" #import "MLRNStyle.h" diff --git a/ios/MLRN/MLRNLightManager.h b/ios/MLRN/MLRNLightManager.h index 05ae2b1e8..e907ac6ed 100644 --- a/ios/MLRN/MLRNLightManager.h +++ b/ios/MLRN/MLRNLightManager.h @@ -1,11 +1,3 @@ -// -// MLRNLightManager.h -// MLRN -// -// Created by Nick Italiano on 9/26/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "ViewManager.h" @interface MLRNLightManager : ViewManager diff --git a/ios/MLRN/MLRNLightManager.m b/ios/MLRN/MLRNLightManager.m index 5ee194cc4..4b769b8f5 100644 --- a/ios/MLRN/MLRNLightManager.m +++ b/ios/MLRN/MLRNLightManager.m @@ -1,11 +1,3 @@ -// -// MLRNLightManager.m -// MLRN -// -// Created by Nick Italiano on 9/26/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNLightManager.h" #import "MLRNLight.h" diff --git a/ios/MLRN/MLRNLineLayer.h b/ios/MLRN/MLRNLineLayer.h index 489c1e4c7..f265a3232 100644 --- a/ios/MLRN/MLRNLineLayer.h +++ b/ios/MLRN/MLRNLineLayer.h @@ -1,11 +1,3 @@ -// -// MLRNLineLayer.h -// MLRN -// -// Created by Nick Italiano on 9/18/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNVectorLayer.h" @import MapLibre; diff --git a/ios/MLRN/MLRNLineLayer.m b/ios/MLRN/MLRNLineLayer.m index 004a6b9b2..8168770ed 100644 --- a/ios/MLRN/MLRNLineLayer.m +++ b/ios/MLRN/MLRNLineLayer.m @@ -1,11 +1,3 @@ -// -// MLRNLineLayer.m -// MLRN -// -// Created by Nick Italiano on 9/18/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNLineLayer.h" #import "MLRNStyle.h" #import diff --git a/ios/MLRN/MLRNLineLayerManager.h b/ios/MLRN/MLRNLineLayerManager.h index 5d3bd8df4..cc9702b5a 100644 --- a/ios/MLRN/MLRNLineLayerManager.h +++ b/ios/MLRN/MLRNLineLayerManager.h @@ -1,11 +1,3 @@ -// -// MLRNLineLayerManager.h -// MLRN -// -// Created by Nick Italiano on 9/18/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "ViewManager.h" @interface MLRNLineLayerManager : ViewManager diff --git a/ios/MLRN/MLRNLineLayerManager.m b/ios/MLRN/MLRNLineLayerManager.m index 9f4b84bdf..58b693674 100644 --- a/ios/MLRN/MLRNLineLayerManager.m +++ b/ios/MLRN/MLRNLineLayerManager.m @@ -1,11 +1,3 @@ -// -// MLRNLineLayerManager.m -// MLRN -// -// Created by Nick Italiano on 9/18/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNLineLayerManager.h" #import "MLRNLineLayer.h" diff --git a/ios/MLRN/MLRNLocation.h b/ios/MLRN/MLRNLocation.h index d77697d82..4ee567b0f 100644 --- a/ios/MLRN/MLRNLocation.h +++ b/ios/MLRN/MLRNLocation.h @@ -1,11 +1,3 @@ -// -// MLRNLocation.h -// MLRN -// -// Created by Nick Italiano on 6/21/18. -// Copyright © 2018 Mapbox Inc. All rights reserved. -// - #import #import diff --git a/ios/MLRN/MLRNLocation.m b/ios/MLRN/MLRNLocation.m index 80a7936ac..e38a421c5 100644 --- a/ios/MLRN/MLRNLocation.m +++ b/ios/MLRN/MLRNLocation.m @@ -1,11 +1,3 @@ -// -// MLRNLocation.m -// MLRN -// -// Created by Nick Italiano on 6/21/18. -// Copyright © 2018 Mapbox Inc. All rights reserved. -// - #import "MLRNLocation.h" @implementation MLRNLocation diff --git a/ios/MLRN/MLRNLocationManager.h b/ios/MLRN/MLRNLocationManager.h index 40546f9c4..002a0ba53 100644 --- a/ios/MLRN/MLRNLocationManager.h +++ b/ios/MLRN/MLRNLocationManager.h @@ -1,11 +1,3 @@ -// -// MLRNLocationManager.h -// MLRN -// -// Created by Nick Italiano on 6/21/18. -// Copyright © 2018 Mapbox Inc. All rights reserved. -// - #import #import "MLRNLocation.h" diff --git a/ios/MLRN/MLRNLocationManager.m b/ios/MLRN/MLRNLocationManager.m index 1b058fddf..1b38bc33d 100644 --- a/ios/MLRN/MLRNLocationManager.m +++ b/ios/MLRN/MLRNLocationManager.m @@ -1,11 +1,3 @@ -// -// MLRNLocationManager.m -// MLRN -// -// Created by Nick Italiano on 6/21/18. -// Copyright © 2018 Mapbox Inc. All rights reserved. -// - #import #import "MLRNLocationManager.h" diff --git a/ios/MLRN/MLRNLocationManagerDelegate.h b/ios/MLRN/MLRNLocationManagerDelegate.h index f0f3bcd23..bebb567de 100644 --- a/ios/MLRN/MLRNLocationManagerDelegate.h +++ b/ios/MLRN/MLRNLocationManagerDelegate.h @@ -1,11 +1,3 @@ -// -// MLRNLocationManagerDelegate.h -// MLRN -// -// Created by Nick Italiano on 6/21/18. -// Copyright © 2018 Mapbox Inc. All rights reserved. -// - #import #import "MLRNLocation.h" diff --git a/ios/MLRN/MLRNLocationModule.h b/ios/MLRN/MLRNLocationModule.h index ba3e7bfbf..aee8ecc75 100644 --- a/ios/MLRN/MLRNLocationModule.h +++ b/ios/MLRN/MLRNLocationModule.h @@ -1,11 +1,3 @@ -// -// MLRNLocationManager.h -// MLRN -// -// Created by Nick Italiano on 6/21/18. -// Copyright © 2018 Mapbox Inc. All rights reserved. -// - #import #import #import diff --git a/ios/MLRN/MLRNLocationModule.m b/ios/MLRN/MLRNLocationModule.m index 89248ec87..2f78497da 100644 --- a/ios/MLRN/MLRNLocationModule.m +++ b/ios/MLRN/MLRNLocationModule.m @@ -1,11 +1,3 @@ -// -// MLRNLocationManager.m -// MLRN -// -// Created by Nick Italiano on 6/21/18. -// Copyright © 2018 Mapbox Inc. All rights reserved. -// - #import #import "MLRNLocation.h" diff --git a/ios/MLRN/MLRNMapTouchEvent.h b/ios/MLRN/MLRNMapTouchEvent.h index 8da3b1f88..3c1b9533c 100644 --- a/ios/MLRN/MLRNMapTouchEvent.h +++ b/ios/MLRN/MLRNMapTouchEvent.h @@ -1,11 +1,3 @@ -// -// MLRNTouchEvent.h -// MLRN -// -// Created by Nick Italiano on 8/25/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import #import "MLRNEvent.h" #import "MLRNPointAnnotation.h" diff --git a/ios/MLRN/MLRNMapTouchEvent.m b/ios/MLRN/MLRNMapTouchEvent.m index 5dc59c386..86df9afab 100644 --- a/ios/MLRN/MLRNMapTouchEvent.m +++ b/ios/MLRN/MLRNMapTouchEvent.m @@ -1,11 +1,3 @@ -// -// MLRNTouchEvent.m -// MLRN -// -// Created by Nick Italiano on 8/25/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNMapTouchEvent.h" #import "MLRNEventTypes.h" #import "MLRNPointAnnotation.h" diff --git a/ios/MLRN/MLRNMapView.h b/ios/MLRN/MLRNMapView.h index da233a6e4..e6efa3368 100644 --- a/ios/MLRN/MLRNMapView.h +++ b/ios/MLRN/MLRNMapView.h @@ -1,11 +1,3 @@ -// -// MLRNMapView.h -// MLRN -// -// Created by Nick Italiano on 8/23/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import #import "MLRNSource.h" #import "MLRNShapeSource.h" diff --git a/ios/MLRN/MLRNMapView.m b/ios/MLRN/MLRNMapView.m index b846a2253..a6690cdee 100644 --- a/ios/MLRN/MLRNMapView.m +++ b/ios/MLRN/MLRNMapView.m @@ -1,11 +1,3 @@ -// -// MLRNMapView.m -// MLRN -// -// Created by Nick Italiano on 8/23/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNMapView.h" #import "CameraUpdateQueue.h" #import "MLRNUtils.h" diff --git a/ios/MLRN/MLRNMapViewManager.h b/ios/MLRN/MLRNMapViewManager.h index b35063006..461b8c730 100644 --- a/ios/MLRN/MLRNMapViewManager.h +++ b/ios/MLRN/MLRNMapViewManager.h @@ -1,11 +1,3 @@ -// -// MLRNMapViewManager.h -// MLRN -// -// Created by Nick Italiano on 8/23/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "ViewManager.h" @import MapLibre; diff --git a/ios/MLRN/MLRNMapViewManager.m b/ios/MLRN/MLRNMapViewManager.m index 6cf5bec7e..a8b6cc5d5 100644 --- a/ios/MLRN/MLRNMapViewManager.m +++ b/ios/MLRN/MLRNMapViewManager.m @@ -1,11 +1,3 @@ -// -// MLRNMapViewManager.m -// MLRN -// -// Created by Nick Italiano on 8/23/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import #import "MLRNMapViewManager.h" diff --git a/ios/MLRN/MLRNModule.h b/ios/MLRN/MLRNModule.h index 2d7c3bcbd..489fe29bc 100644 --- a/ios/MLRN/MLRNModule.h +++ b/ios/MLRN/MLRNModule.h @@ -1,11 +1,3 @@ -// -// MLRNModule.h -// MLRN -// -// Created by Nick Italiano on 8/23/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import #import diff --git a/ios/MLRN/MLRNModule.m b/ios/MLRN/MLRNModule.m index e5a40b3cf..7a5658788 100644 --- a/ios/MLRN/MLRNModule.m +++ b/ios/MLRN/MLRNModule.m @@ -1,11 +1,3 @@ -// -// MLRNModule.m -// MLRN -// -// Created by Nick Italiano on 8/23/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNModule.h" #import "MLRNEventTypes.h" #import "MLRNOfflineModule.h" diff --git a/ios/MLRN/MLRNNativeUserLocation.h b/ios/MLRN/MLRNNativeUserLocation.h index 0c4cfaee2..05f1b99cd 100644 --- a/ios/MLRN/MLRNNativeUserLocation.h +++ b/ios/MLRN/MLRNNativeUserLocation.h @@ -1,10 +1,3 @@ -// -// MLRNCamera.h -// MLRN -// -// Created by Nick Italiano on 6/22/18. -// Copyright © 2018 Mapbox Inc. All rights reserved. -// #import #import diff --git a/ios/MLRN/MLRNNativeUserLocation.m b/ios/MLRN/MLRNNativeUserLocation.m index b4e82a43f..18ed326ef 100644 --- a/ios/MLRN/MLRNNativeUserLocation.m +++ b/ios/MLRN/MLRNNativeUserLocation.m @@ -1,11 +1,3 @@ -// -// MLRNCamera.m -// MLRN -// -// Created by Nick Italiano on 6/22/18. -// Copyright © 2018 Mapbox Inc. All rights reserved. -// - #import "MLRNNativeUserLocation.h" #import "CameraStop.h" #import "CameraUpdateQueue.h" diff --git a/ios/MLRN/MLRNOfflineModule.h b/ios/MLRN/MLRNOfflineModule.h index 39436199d..c590c08fa 100644 --- a/ios/MLRN/MLRNOfflineModule.h +++ b/ios/MLRN/MLRNOfflineModule.h @@ -1,11 +1,3 @@ -// -// MLRNOfflineModule.h -// MLRN -// -// Created by Nick Italiano on 10/25/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import #import diff --git a/ios/MLRN/MLRNOfflineModule.m b/ios/MLRN/MLRNOfflineModule.m index 59f954dd7..5f26e979e 100644 --- a/ios/MLRN/MLRNOfflineModule.m +++ b/ios/MLRN/MLRNOfflineModule.m @@ -1,11 +1,3 @@ -// -// MLRNOfflineModule.m -// MLRN -// -// Created by Nick Italiano on 10/25/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNOfflineModule.h" #import "MLRNUtils.h" #import "MLRNEvent.h" diff --git a/ios/MLRN/MLRNPointAnnotation.h b/ios/MLRN/MLRNPointAnnotation.h index c91554598..b6d12715d 100644 --- a/ios/MLRN/MLRNPointAnnotation.h +++ b/ios/MLRN/MLRNPointAnnotation.h @@ -1,11 +1,3 @@ -// -// MLRNPointAnnotation.h -// MLRN -// -// Created by Nick Italiano on 10/12/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import #import #import diff --git a/ios/MLRN/MLRNPointAnnotation.m b/ios/MLRN/MLRNPointAnnotation.m index 651dfd203..c30045e73 100644 --- a/ios/MLRN/MLRNPointAnnotation.m +++ b/ios/MLRN/MLRNPointAnnotation.m @@ -1,11 +1,3 @@ -// -// MLRNPointAnnotation.m -// MLRN -// -// Created by Nick Italiano on 10/12/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNPointAnnotation.h" #import "MLRNMapTouchEvent.h" #import "MLRNUtils.h" diff --git a/ios/MLRN/MLRNPointAnnotationManager.h b/ios/MLRN/MLRNPointAnnotationManager.h index bf5f5d575..70de19483 100644 --- a/ios/MLRN/MLRNPointAnnotationManager.h +++ b/ios/MLRN/MLRNPointAnnotationManager.h @@ -1,11 +1,3 @@ -// -// MLRNPointAnnotationManager.h -// MLRN -// -// Created by Nick Italiano on 10/12/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "ViewManager.h" @interface MLRNPointAnnotationManager : ViewManager diff --git a/ios/MLRN/MLRNPointAnnotationManager.m b/ios/MLRN/MLRNPointAnnotationManager.m index af908d62c..85cb05f62 100644 --- a/ios/MLRN/MLRNPointAnnotationManager.m +++ b/ios/MLRN/MLRNPointAnnotationManager.m @@ -1,11 +1,3 @@ -// -// MLRNPointAnnotationManager.m -// MLRN -// -// Created by Nick Italiano on 10/12/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNPointAnnotationManager.h" #import "MLRNPointAnnotation.h" diff --git a/ios/MLRN/MLRNRasterLayer.h b/ios/MLRN/MLRNRasterLayer.h index 9b4e41e70..8eee603d4 100644 --- a/ios/MLRN/MLRNRasterLayer.h +++ b/ios/MLRN/MLRNRasterLayer.h @@ -1,11 +1,3 @@ -// -// MLRNRasterLayer.h -// MLRN -// -// Created by Nick Italiano on 9/25/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNLayer.h" @import MapLibre; diff --git a/ios/MLRN/MLRNRasterLayer.m b/ios/MLRN/MLRNRasterLayer.m index 889a6c84a..08ef97aef 100644 --- a/ios/MLRN/MLRNRasterLayer.m +++ b/ios/MLRN/MLRNRasterLayer.m @@ -1,11 +1,3 @@ -// -// MLRNRasterLayer.m -// MLRN -// -// Created by Nick Italiano on 9/25/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNRasterLayer.h" #import "MLRNStyle.h" diff --git a/ios/MLRN/MLRNRasterLayerManager.h b/ios/MLRN/MLRNRasterLayerManager.h index 236b217da..da7272931 100644 --- a/ios/MLRN/MLRNRasterLayerManager.h +++ b/ios/MLRN/MLRNRasterLayerManager.h @@ -1,11 +1,3 @@ -// -// MLRNRasterLayerManager.h -// MLRN -// -// Created by Nick Italiano on 9/25/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "ViewManager.h" @interface MLRNRasterLayerManager : ViewManager diff --git a/ios/MLRN/MLRNRasterLayerManager.m b/ios/MLRN/MLRNRasterLayerManager.m index 0ad26f075..0b967e0e0 100644 --- a/ios/MLRN/MLRNRasterLayerManager.m +++ b/ios/MLRN/MLRNRasterLayerManager.m @@ -1,11 +1,3 @@ -// -// MLRNRasterLayerManager.m -// MLRN -// -// Created by Nick Italiano on 9/25/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNRasterLayerManager.h" #import "MLRNRasterLayer.h" diff --git a/ios/MLRN/MLRNRasterSource.h b/ios/MLRN/MLRNRasterSource.h index 685324e6a..42e3b76e0 100644 --- a/ios/MLRN/MLRNRasterSource.h +++ b/ios/MLRN/MLRNRasterSource.h @@ -1,11 +1,3 @@ -// -// MLRNRasterSource.h -// MLRN -// -// Created by Nick Italiano on 9/25/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNTileSource.h" @import MapLibre; diff --git a/ios/MLRN/MLRNRasterSource.m b/ios/MLRN/MLRNRasterSource.m index 2faa2af93..bf8dd24a8 100644 --- a/ios/MLRN/MLRNRasterSource.m +++ b/ios/MLRN/MLRNRasterSource.m @@ -1,11 +1,3 @@ -// -// MLRNRasterSource.m -// MLRN -// -// Created by Nick Italiano on 9/25/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNRasterSource.h" @implementation MLRNRasterSource diff --git a/ios/MLRN/MLRNRasterSourceManager.h b/ios/MLRN/MLRNRasterSourceManager.h index 1c4b0c8aa..454c66928 100644 --- a/ios/MLRN/MLRNRasterSourceManager.h +++ b/ios/MLRN/MLRNRasterSourceManager.h @@ -1,11 +1,3 @@ -// -// MLRNRasterSourceManager.h -// MLRN -// -// Created by Nick Italiano on 9/25/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "ViewManager.h" @interface MLRNRasterSourceManager : ViewManager diff --git a/ios/MLRN/MLRNRasterSourceManager.m b/ios/MLRN/MLRNRasterSourceManager.m index 5c7ba3c63..e5d7a263a 100644 --- a/ios/MLRN/MLRNRasterSourceManager.m +++ b/ios/MLRN/MLRNRasterSourceManager.m @@ -1,11 +1,3 @@ -// -// MLRNRasterSourceManager.m -// MLRN -// -// Created by Nick Italiano on 9/25/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNRasterSourceManager.h" #import "MLRNRasterSource.h" diff --git a/ios/MLRN/MLRNShapeSource.h b/ios/MLRN/MLRNShapeSource.h index 5aad10157..b173a2446 100644 --- a/ios/MLRN/MLRNShapeSource.h +++ b/ios/MLRN/MLRNShapeSource.h @@ -1,11 +1,3 @@ -// -// MLRNShapeSource.h -// MLRN -// -// Created by Nick Italiano on 9/19/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import #import "MLRNSource.h" diff --git a/ios/MLRN/MLRNShapeSource.m b/ios/MLRN/MLRNShapeSource.m index 6dff87611..8451f84a2 100644 --- a/ios/MLRN/MLRNShapeSource.m +++ b/ios/MLRN/MLRNShapeSource.m @@ -1,11 +1,3 @@ -// -// MLRNShapeSource.m -// MLRN -// -// Created by Nick Italiano on 9/19/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNShapeSource.h" #import "MLRNUtils.h" #import "MLRNMapView.h" diff --git a/ios/MLRN/MLRNShapeSourceManager.h b/ios/MLRN/MLRNShapeSourceManager.h index 99e55480b..be0383da3 100644 --- a/ios/MLRN/MLRNShapeSourceManager.h +++ b/ios/MLRN/MLRNShapeSourceManager.h @@ -1,11 +1,3 @@ -// -// MLRNShapeSourceManager.h -// MLRN -// -// Created by Nick Italiano on 9/19/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "ViewManager.h" #import diff --git a/ios/MLRN/MLRNShapeSourceManager.m b/ios/MLRN/MLRNShapeSourceManager.m index f558ff21b..b5e0e051e 100644 --- a/ios/MLRN/MLRNShapeSourceManager.m +++ b/ios/MLRN/MLRNShapeSourceManager.m @@ -1,10 +1,3 @@ -// -// MLRNShapeSourceManager.m -// MLRN -// -// Created by Nick Italiano on 9/19/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// #import #import "MLRNShapeSourceManager.h" diff --git a/ios/MLRN/MLRNSnapshotModule.h b/ios/MLRN/MLRNSnapshotModule.h index a64c2c831..e0d06e504 100644 --- a/ios/MLRN/MLRNSnapshotModule.h +++ b/ios/MLRN/MLRNSnapshotModule.h @@ -1,11 +1,3 @@ -// -// MLRNSnapshotModule.h -// MLRN -// -// Created by Nick Italiano on 12/1/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import @interface MLRNSnapshotModule : NSObject diff --git a/ios/MLRN/MLRNSnapshotModule.m b/ios/MLRN/MLRNSnapshotModule.m index b90d38cad..a1d70ccde 100644 --- a/ios/MLRN/MLRNSnapshotModule.m +++ b/ios/MLRN/MLRNSnapshotModule.m @@ -1,11 +1,3 @@ -// -// MLRNSnapshotModule.m -// MLRN -// -// Created by Nick Italiano on 12/1/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNSnapshotModule.h" #import "MLRNUtils.h" #import "MLRNImageUtils.h" diff --git a/ios/MLRN/MLRNSource.h b/ios/MLRN/MLRNSource.h index fbe7e6565..a9bf33997 100644 --- a/ios/MLRN/MLRNSource.h +++ b/ios/MLRN/MLRNSource.h @@ -1,11 +1,3 @@ -// -// BaseSource.h -// MLRN -// -// Created by Nick Italiano on 9/8/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import #import "MLRNLayer.h" #import diff --git a/ios/MLRN/MLRNSource.m b/ios/MLRN/MLRNSource.m index 10fc0d9e4..89d69191c 100644 --- a/ios/MLRN/MLRNSource.m +++ b/ios/MLRN/MLRNSource.m @@ -1,11 +1,3 @@ -// -// BaseSource.m -// MLRN -// -// Created by Nick Italiano on 9/8/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNSource.h" #import #import "MLRNMapView.h" diff --git a/ios/MLRN/MLRNStyleValue.h b/ios/MLRN/MLRNStyleValue.h index 5815b197f..92f0980f1 100644 --- a/ios/MLRN/MLRNStyleValue.h +++ b/ios/MLRN/MLRNStyleValue.h @@ -1,11 +1,3 @@ -// -// MLRNStyleValue.h -// MLRN -// -// Created by Nick Italiano on 9/11/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import @import MapLibre; diff --git a/ios/MLRN/MLRNStyleValue.m b/ios/MLRN/MLRNStyleValue.m index a7cfa0b69..08c0ceec2 100644 --- a/ios/MLRN/MLRNStyleValue.m +++ b/ios/MLRN/MLRNStyleValue.m @@ -1,11 +1,3 @@ -// -// MLRNStyleValue.m -// MLRN -// -// Created by Nick Italiano on 9/11/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNStyleValue.h" #import "MLRNUtils.h" #import diff --git a/ios/MLRN/MLRNSymbolLayer.h b/ios/MLRN/MLRNSymbolLayer.h index dd80b6d5c..51ff889f6 100644 --- a/ios/MLRN/MLRNSymbolLayer.h +++ b/ios/MLRN/MLRNSymbolLayer.h @@ -1,11 +1,3 @@ -// -// MLRNSymbolLayer.h -// MLRN -// -// Created by Nick Italiano on 9/19/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import #import "MLRNVectorLayer.h" diff --git a/ios/MLRN/MLRNSymbolLayer.m b/ios/MLRN/MLRNSymbolLayer.m index 58b42aefe..b1da4bcdd 100644 --- a/ios/MLRN/MLRNSymbolLayer.m +++ b/ios/MLRN/MLRNSymbolLayer.m @@ -1,11 +1,3 @@ -// -// MLRNSymbolLayer.m -// MLRN -// -// Created by Nick Italiano on 9/19/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNSymbolLayer.h" #import "MLRNStyle.h" #import diff --git a/ios/MLRN/MLRNSymbolLayerManager.h b/ios/MLRN/MLRNSymbolLayerManager.h index 07a14f2d3..ee15db497 100644 --- a/ios/MLRN/MLRNSymbolLayerManager.h +++ b/ios/MLRN/MLRNSymbolLayerManager.h @@ -1,11 +1,3 @@ -// -// MLRNSymbolLayerManager.h -// MLRN -// -// Created by Nick Italiano on 9/19/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "ViewManager.h" @interface MLRNSymbolLayerManager : ViewManager diff --git a/ios/MLRN/MLRNSymbolLayerManager.m b/ios/MLRN/MLRNSymbolLayerManager.m index 2eb8d740f..a08b82efe 100644 --- a/ios/MLRN/MLRNSymbolLayerManager.m +++ b/ios/MLRN/MLRNSymbolLayerManager.m @@ -1,11 +1,3 @@ -// -// MLRNSymbolLayerManager.m -// MLRN -// -// Created by Nick Italiano on 9/19/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNSymbolLayerManager.h" #import "MLRNSymbolLayer.h" diff --git a/ios/MLRN/MLRNUtils.h b/ios/MLRN/MLRNUtils.h index 070051cf9..a29ce9e25 100644 --- a/ios/MLRN/MLRNUtils.h +++ b/ios/MLRN/MLRNUtils.h @@ -1,11 +1,3 @@ -// -// RCTConvert+Mapbox.h -// MLRN -// -// Created by Nick Italiano on 8/23/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import #import #import diff --git a/ios/MLRN/MLRNUtils.m b/ios/MLRN/MLRNUtils.m index b6c8fad6d..8c5090b0c 100644 --- a/ios/MLRN/MLRNUtils.m +++ b/ios/MLRN/MLRNUtils.m @@ -1,11 +1,3 @@ -// -// RCTConvert+Mapbox.m -// MLRN -// -// Created by Nick Italiano on 8/23/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNUtils.h" #import "MLRNImageQueue.h" diff --git a/ios/MLRN/MLRNVectorLayer.h b/ios/MLRN/MLRNVectorLayer.h index b7db31522..496ed18c0 100644 --- a/ios/MLRN/MLRNVectorLayer.h +++ b/ios/MLRN/MLRNVectorLayer.h @@ -1,11 +1,3 @@ -// -// MLRNCircleLayer.h -// MLRN -// -// Created by Nick Italiano on 9/18/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNLayer.h" @interface MLRNVectorLayer : MLRNLayer diff --git a/ios/MLRN/MLRNVectorLayer.m b/ios/MLRN/MLRNVectorLayer.m index 15db2b29b..533a9db07 100644 --- a/ios/MLRN/MLRNVectorLayer.m +++ b/ios/MLRN/MLRNVectorLayer.m @@ -1,11 +1,3 @@ -// -// MLRNCircleLayer.m -// MLRN -// -// Created by Nick Italiano on 9/18/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNVectorLayer.h" #import "MLRNStyle.h" #import "FilterParser.h" diff --git a/ios/MLRN/MLRNVectorSource.h b/ios/MLRN/MLRNVectorSource.h index e41657864..4f401bf4b 100644 --- a/ios/MLRN/MLRNVectorSource.h +++ b/ios/MLRN/MLRNVectorSource.h @@ -1,11 +1,3 @@ -// -// MLRNVectorSource.h -// MLRN -// -// Created by Nick Italiano on 9/8/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNTileSource.h" @import MapLibre; diff --git a/ios/MLRN/MLRNVectorSource.m b/ios/MLRN/MLRNVectorSource.m index adf011306..ed0681d3c 100644 --- a/ios/MLRN/MLRNVectorSource.m +++ b/ios/MLRN/MLRNVectorSource.m @@ -1,11 +1,3 @@ -// -// MLRNVectorSource.m -// MLRN -// -// Created by Nick Italiano on 9/8/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "MLRNVectorSource.h" @implementation MLRNVectorSource diff --git a/ios/MLRN/MLRNVectorSourceManager.h b/ios/MLRN/MLRNVectorSourceManager.h index 6ac4dc178..33f2333ca 100644 --- a/ios/MLRN/MLRNVectorSourceManager.h +++ b/ios/MLRN/MLRNVectorSourceManager.h @@ -1,11 +1,3 @@ -// -// MLRNVectorSourceManager.h -// MLRN -// -// Created by Nick Italiano on 9/8/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "ViewManager.h" #import diff --git a/ios/MLRN/MLRNVectorSourceManager.m b/ios/MLRN/MLRNVectorSourceManager.m index f8b20b163..964cbd93b 100644 --- a/ios/MLRN/MLRNVectorSourceManager.m +++ b/ios/MLRN/MLRNVectorSourceManager.m @@ -1,11 +1,3 @@ -// -// MLRNVectorSourceManager.m -// MLRN -// -// Created by Nick Italiano on 9/8/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import #import "MLRNVectorSourceManager.h" diff --git a/ios/MLRN/ViewManager.h b/ios/MLRN/ViewManager.h index c0dd34415..ef292df9f 100644 --- a/ios/MLRN/ViewManager.h +++ b/ios/MLRN/ViewManager.h @@ -1,11 +1,3 @@ -// -// ViewManager.h -// MLRN -// -// Created by Nick Italiano on 8/31/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import #import "MLRNEvent.h" diff --git a/ios/MLRN/ViewManager.m b/ios/MLRN/ViewManager.m index c2af63614..e200a8cf6 100644 --- a/ios/MLRN/ViewManager.m +++ b/ios/MLRN/ViewManager.m @@ -1,11 +1,3 @@ -// -// ViewManager.m -// MLRN -// -// Created by Nick Italiano on 8/31/17. -// Copyright © 2017 Mapbox Inc. All rights reserved. -// - #import "ViewManager.h" @implementation ViewManager