aboutsummaryrefslogtreecommitdiffstats
path: root/OsmAnd-telegram/src/net/osmand/aidl/maplayer/RemoveMapLayerParams.java
diff options
context:
space:
mode:
Diffstat (limited to 'OsmAnd-telegram/src/net/osmand/aidl/maplayer/RemoveMapLayerParams.java')
-rw-r--r--OsmAnd-telegram/src/net/osmand/aidl/maplayer/RemoveMapLayerParams.java44
1 files changed, 0 insertions, 44 deletions
diff --git a/OsmAnd-telegram/src/net/osmand/aidl/maplayer/RemoveMapLayerParams.java b/OsmAnd-telegram/src/net/osmand/aidl/maplayer/RemoveMapLayerParams.java
deleted file mode 100644
index 3e87627445..0000000000
--- a/OsmAnd-telegram/src/net/osmand/aidl/maplayer/RemoveMapLayerParams.java
+++ /dev/null
@@ -1,44 +0,0 @@
-package net.osmand.aidl.maplayer;
-
-import android.os.Parcel;
-import android.os.Parcelable;
-import android.os.Parcelable.Creator;
-
-public class RemoveMapLayerParams implements Parcelable {
- private String id;
-
- public RemoveMapLayerParams(String id) {
- this.id = id;
- }
-
- public RemoveMapLayerParams(Parcel in) {
- readFromParcel(in);
- }
-
- public static final Creator<RemoveMapLayerParams> CREATOR = new
- Creator<RemoveMapLayerParams>() {
- public RemoveMapLayerParams createFromParcel(Parcel in) {
- return new RemoveMapLayerParams(in);
- }
-
- public RemoveMapLayerParams[] newArray(int size) {
- return new RemoveMapLayerParams[size];
- }
- };
-
- public String getId() {
- return id;
- }
-
- public void writeToParcel(Parcel out, int flags) {
- out.writeString(id);
- }
-
- private void readFromParcel(Parcel in) {
- id = in.readString();
- }
-
- public int describeContents() {
- return 0;
- }
-}