"updated" bools in App and Apk are now unused

This commit is contained in:
Daniel Martí 2015-04-21 19:09:30 +02:00
parent 76a489c492
commit a3c78e4d02
2 changed files with 0 additions and 8 deletions

View File

@ -40,15 +40,11 @@ public class Apk extends ValueObject implements Comparable<Apk> {
// build - otherwise it's built from source.
public String srcname;
// Used internally for tracking during repo updates.
public boolean updated;
public int repoVersion;
public String repoAddress;
public Utils.CommaSeparatedList incompatible_reasons;
public Apk() {
updated = false;
size = 0;
added = null;
repo = 0;

View File

@ -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)
public boolean compatible;
public boolean includeInRepo = false;
public String id = "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
public int ignoreThisUpdate;
// Used internally for tracking during repo updates.
public boolean updated;
public String iconUrl;
public String installedVersionName;