diff --git a/android/src/com/mapswithme/maps/Framework.java b/android/src/com/mapswithme/maps/Framework.java index 34b6abacc4..d89a7c3892 100644 --- a/android/src/com/mapswithme/maps/Framework.java +++ b/android/src/com/mapswithme/maps/Framework.java @@ -18,7 +18,6 @@ import com.mapswithme.maps.auth.AuthorizationListener; import com.mapswithme.maps.bookmarks.data.DistanceAndAzimut; import com.mapswithme.maps.bookmarks.data.FeatureId; import com.mapswithme.maps.bookmarks.data.MapObject; -import com.mapswithme.maps.gdpr.UserBindingListener; import com.mapswithme.maps.location.LocationHelper; import com.mapswithme.maps.routing.RouteMarkData; import com.mapswithme.maps.routing.RoutePointInfo; diff --git a/android/src/com/mapswithme/maps/gdpr/MwmOptOutActivity.java b/android/src/com/mapswithme/maps/gdpr/MwmOptOutActivity.java deleted file mode 100644 index 5f0a82eebb..0000000000 --- a/android/src/com/mapswithme/maps/gdpr/MwmOptOutActivity.java +++ /dev/null @@ -1,14 +0,0 @@ -package com.mapswithme.maps.gdpr; - -import androidx.fragment.app.Fragment; - -import com.mapswithme.maps.base.BaseToolbarActivity; - -public class MwmOptOutActivity extends BaseToolbarActivity -{ - @Override - protected Class getFragmentClass() - { - return OptOutFragment.class; - } -} diff --git a/android/src/com/mapswithme/maps/gdpr/OptOutFragment.java b/android/src/com/mapswithme/maps/gdpr/OptOutFragment.java deleted file mode 100644 index f0378b6c1e..0000000000 --- a/android/src/com/mapswithme/maps/gdpr/OptOutFragment.java +++ /dev/null @@ -1,21 +0,0 @@ -package com.mapswithme.maps.gdpr; - -import android.os.Bundle; -import androidx.annotation.Nullable; -import androidx.fragment.app.Fragment; -import android.view.LayoutInflater; -import android.view.View; -import android.view.ViewGroup; - -import com.mapswithme.maps.R; - -public class OptOutFragment extends Fragment -{ - @Nullable - @Override - public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, - @Nullable Bundle savedInstanceState) - { - return inflater.inflate(R.layout.fragment_gdpr, container, false); - } -} diff --git a/android/src/com/mapswithme/maps/gdpr/UserBindingListener.java b/android/src/com/mapswithme/maps/gdpr/UserBindingListener.java deleted file mode 100644 index 7360141858..0000000000 --- a/android/src/com/mapswithme/maps/gdpr/UserBindingListener.java +++ /dev/null @@ -1,6 +0,0 @@ -package com.mapswithme.maps.gdpr; - -public interface UserBindingListener -{ - void onUserBound(boolean success); -}