"updated" bools in App and Apk are now unused
This commit is contained in:
parent
76a489c492
commit
a3c78e4d02
@ -40,15 +40,11 @@ public class Apk extends ValueObject implements Comparable<Apk> {
|
|||||||
// build - otherwise it's built from source.
|
// build - otherwise it's built from source.
|
||||||
public String srcname;
|
public String srcname;
|
||||||
|
|
||||||
// Used internally for tracking during repo updates.
|
|
||||||
public boolean updated;
|
|
||||||
|
|
||||||
public int repoVersion;
|
public int repoVersion;
|
||||||
public String repoAddress;
|
public String repoAddress;
|
||||||
public Utils.CommaSeparatedList incompatible_reasons;
|
public Utils.CommaSeparatedList incompatible_reasons;
|
||||||
|
|
||||||
public Apk() {
|
public Apk() {
|
||||||
updated = false;
|
|
||||||
size = 0;
|
size = 0;
|
||||||
added = null;
|
added = null;
|
||||||
repo = 0;
|
repo = 0;
|
||||||
|
@ -34,7 +34,6 @@ public class App extends ValueObject implements Comparable<App> {
|
|||||||
|
|
||||||
// True if compatible with the device (i.e. if at least one apk is)
|
// True if compatible with the device (i.e. if at least one apk is)
|
||||||
public boolean compatible;
|
public boolean compatible;
|
||||||
public boolean includeInRepo = false;
|
|
||||||
|
|
||||||
public String id = "unknown";
|
public String id = "unknown";
|
||||||
public String name = "Unknown";
|
public String name = "Unknown";
|
||||||
@ -94,9 +93,6 @@ public class App extends ValueObject implements Comparable<App> {
|
|||||||
// True if the current update for this app is to be ignored
|
// True if the current update for this app is to be ignored
|
||||||
public int ignoreThisUpdate;
|
public int ignoreThisUpdate;
|
||||||
|
|
||||||
// Used internally for tracking during repo updates.
|
|
||||||
public boolean updated;
|
|
||||||
|
|
||||||
public String iconUrl;
|
public String iconUrl;
|
||||||
|
|
||||||
public String installedVersionName;
|
public String installedVersionName;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user