From ddea17253c1e2f01df08defcd47a9824c3917eca Mon Sep 17 00:00:00 2001 From: Simon Fels Date: Mon, 9 Jan 2017 07:07:10 +0100 Subject: [PATCH] appmgr: drop unused methods --- android/appmgr/src/org/anbox/appmgr/PlatformService.java | 6 ------ 1 file changed, 6 deletions(-) diff --git a/android/appmgr/src/org/anbox/appmgr/PlatformService.java b/android/appmgr/src/org/anbox/appmgr/PlatformService.java index 6e2cf39..7f9ac69 100644 --- a/android/appmgr/src/org/anbox/appmgr/PlatformService.java +++ b/android/appmgr/src/org/anbox/appmgr/PlatformService.java @@ -121,12 +121,6 @@ public final class PlatformService { } } - public void notifyPackageAdded(Intent intent) { - } - - public void notifyPackageRemoved(Intent intent) { - } - private Bitmap drawableToBitmap(Drawable drawable) { if (drawable instanceof BitmapDrawable) return ((BitmapDrawable)drawable).getBitmap();