From 9e411823a2586e345d24d504fddf9e2dc98fcaf5 Mon Sep 17 00:00:00 2001 From: ProperGeezer <72da6862@opayq.com> Date: Sun, 18 Oct 2015 00:56:50 +0100 Subject: [PATCH] Made selected bool public Made bool selected public in order for App.java able to access this information --- .../java/com/rarchives/ripme/ui/HistoryEntry.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/main/java/com/rarchives/ripme/ui/HistoryEntry.java b/src/main/java/com/rarchives/ripme/ui/HistoryEntry.java index f2b653eb..72d01ff9 100644 --- a/src/main/java/com/rarchives/ripme/ui/HistoryEntry.java +++ b/src/main/java/com/rarchives/ripme/ui/HistoryEntry.java @@ -6,13 +6,13 @@ import org.json.JSONObject; public class HistoryEntry { - public String url = "", - title = "", - dir = ""; - public int count = 0; - public Date startDate = new Date(), - modifiedDate = new Date(); - boolean selected = false; + public String url = "", + title = "", + dir = ""; + public int count = 0; + public Date startDate = new Date(), + modifiedDate = new Date(); + public boolean selected = false; public HistoryEntry() { }