diff --git a/app/src/main/java/com/limelight/grid/AppGridAdapter.java b/app/src/main/java/com/limelight/grid/AppGridAdapter.java index 477a1a99..0ff2f89e 100644 --- a/app/src/main/java/com/limelight/grid/AppGridAdapter.java +++ b/app/src/main/java/com/limelight/grid/AppGridAdapter.java @@ -134,28 +134,6 @@ public class AppGridAdapter extends GenericGridAdapter { itemList.remove(app); } - public void abortPendingRequests() { - HashMap tempMap; - - synchronized (pendingIonRequests) { - // Copy the pending requests under a lock - tempMap = new HashMap(pendingIonRequests); - } - - for (Future f : tempMap.values()) { - if (!f.isCancelled() && !f.isDone()) { - f.cancel(true); - } - } - - synchronized (pendingIonRequests) { - // Remove cancelled requests - for (ImageView v : tempMap.keySet()) { - pendingIonRequests.remove(v); - } - } - } - // TODO: Handle pruning of bitmap cache private void populateBitmapCache(UUID uuid, int appId, Bitmap bitmap) { try {