X-Git-Url: https://gitweb.stoutner.com/?a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fcom%2Fstoutner%2Fprivacybrowser%2Fdialogs%2FUrlHistoryDialog.java;fp=app%2Fsrc%2Fmain%2Fjava%2Fcom%2Fstoutner%2Fprivacybrowser%2Fdialogs%2FUrlHistoryDialog.java;h=708101f1d832710284511fa2c78f269fe686c9a6;hb=e923db59fff5ad31f08679c84678cdfb1ca87d63;hp=4811ea2dae1853bee544ae24b55b56dc8b30b896;hpb=8f1c15606ef8cd277f51cc837c2c39667c48d0d4;p=PrivacyBrowserAndroid.git diff --git a/app/src/main/java/com/stoutner/privacybrowser/dialogs/UrlHistoryDialog.java b/app/src/main/java/com/stoutner/privacybrowser/dialogs/UrlHistoryDialog.java index 4811ea2d..708101f1 100644 --- a/app/src/main/java/com/stoutner/privacybrowser/dialogs/UrlHistoryDialog.java +++ b/app/src/main/java/com/stoutner/privacybrowser/dialogs/UrlHistoryDialog.java @@ -220,9 +220,6 @@ public class UrlHistoryDialog extends AppCompatDialogFragment{ // Get a handle for `listView`. ListView listView = (ListView) alertDialog.findViewById(R.id.history_listview); - // Remove the warning below that `listView` might be `null`. - assert listView != null; - // Set the adapter on `listView`. listView.setAdapter(historyArrayAdapter); @@ -233,15 +230,9 @@ public class UrlHistoryDialog extends AppCompatDialogFragment{ // Convert the `long` `id` to an `int`. int itemId = (int) id; - // Only enable the click if it is not on the `currentPageId`. + // Only consume the click if it is not on the `currentPageId`. if (itemId != currentPageId) { - // Get the history entry for this `itemId`. - History historyEntry = historyArrayAdapter.getItem(itemId); - - // Remove the lint warning below that `historyEntry` might be `null`. - assert historyEntry != null; - - // Send the history entry URL to be loaded in `mainWebView`. + // Go forward or back to `itemId`. urlHistoryListener.onUrlHistoryEntrySelected(currentPageId - itemId); // Dismiss the `Dialog`.