mirror of
https://github.com/RipMeApp/ripme.git
synced 2025-08-20 12:42:06 +02:00
Made selected bool public
Made bool selected public in order for App.java able to access this information
This commit is contained in:
@@ -6,13 +6,13 @@ import org.json.JSONObject;
|
|||||||
|
|
||||||
public class HistoryEntry {
|
public class HistoryEntry {
|
||||||
|
|
||||||
public String url = "",
|
public String url = "",
|
||||||
title = "",
|
title = "",
|
||||||
dir = "";
|
dir = "";
|
||||||
public int count = 0;
|
public int count = 0;
|
||||||
public Date startDate = new Date(),
|
public Date startDate = new Date(),
|
||||||
modifiedDate = new Date();
|
modifiedDate = new Date();
|
||||||
boolean selected = false;
|
public boolean selected = false;
|
||||||
|
|
||||||
public HistoryEntry() {
|
public HistoryEntry() {
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user