diff --git a/app/src/main/java/org/fdroid/fdroid/data/App.java b/app/src/main/java/org/fdroid/fdroid/data/App.java index 11a8ac0d0..ed3797860 100644 --- a/app/src/main/java/org/fdroid/fdroid/data/App.java +++ b/app/src/main/java/org/fdroid/fdroid/data/App.java @@ -82,13 +82,6 @@ public class App extends ValueObject implements Comparable, Parcelable { */ @JsonIgnore public boolean compatible; - /** - * This is primarily for the purpose of saving app metadata when parsing an index.xml file. - * At most other times, we don't particularly care which repo an {@link App} object came from. - * It is pretty much transparent, because the metadata will be populated from the repo with - * the highest priority. The UI doesn't care normally _which_ repo provided the metadata. - * This is required for getting the full URL to the various graphics and screenshots. - */ @JsonIgnore public Apk installedApk; // might be null if not installed @JsonIgnore @@ -107,6 +100,13 @@ public class App extends ValueObject implements Comparable, Parcelable { @JsonIgnore public boolean isApk; + /** + * This is primarily for the purpose of saving app metadata when parsing an index.xml file. + * At most other times, we don't particularly care which repo an {@link App} object came from. + * It is pretty much transparent, because the metadata will be populated from the repo with + * the highest priority. The UI doesn't care normally _which_ repo provided the metadata. + * This is required for getting the full URL to the various graphics and screenshots. + */ @JacksonInject("repoId") public long repoId;