summaryrefslogtreecommitdiff
path: root/Source/Android/app/src/main/java/org
diff options
context:
space:
mode:
authorCharles Lombardo <clombardo169@gmail.com>2023-02-21 09:43:17 -0500
committerCharles Lombardo <clombardo169@gmail.com>2023-02-25 11:17:16 -0500
commita049a0d4bc43035d36919e0716958ac602a70953 (patch)
tree2c1cc373575360899b906bb93fb49bd02d1ac9b3 /Source/Android/app/src/main/java/org
parent5957d851783083677a4910046d14b48f5f28287a (diff)
Android: Remove unused refreshScreenshotAtPosition interface method
Diffstat (limited to 'Source/Android/app/src/main/java/org')
-rw-r--r--Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/ui/platform/PlatformGamesFragment.java6
-rw-r--r--Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/ui/platform/PlatformGamesView.java8
2 files changed, 0 insertions, 14 deletions
diff --git a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/ui/platform/PlatformGamesFragment.java b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/ui/platform/PlatformGamesFragment.java
index 10dbf10c00..9393a48baf 100644
--- a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/ui/platform/PlatformGamesFragment.java
+++ b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/ui/platform/PlatformGamesFragment.java
@@ -93,12 +93,6 @@ public final class PlatformGamesFragment extends Fragment implements PlatformGam
}
@Override
- public void refreshScreenshotAtPosition(int position)
- {
- mAdapter.notifyItemChanged(position);
- }
-
- @Override
public void onItemClick(String gameId)
{
// No-op for now
diff --git a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/ui/platform/PlatformGamesView.java b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/ui/platform/PlatformGamesView.java
index a728408d70..642c531946 100644
--- a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/ui/platform/PlatformGamesView.java
+++ b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/ui/platform/PlatformGamesView.java
@@ -8,14 +8,6 @@ package org.dolphinemu.dolphinemu.ui.platform;
public interface PlatformGamesView
{
/**
- * Tell the view that a certain game's screenshot has been updated,
- * and should be redrawn on-screen.
- *
- * @param position The index of the game that should be redrawn.
- */
- void refreshScreenshotAtPosition(int position);
-
- /**
* Pass a click event to the view's Presenter. Typically called from the
* view's list adapter.
*