From 073cb199fccd50fff239b4d6e117f4acc69b87df Mon Sep 17 00:00:00 2001 From: Peter Serwylo Date: Wed, 5 Jul 2017 17:18:51 +1000 Subject: [PATCH] Move comment to correct field. --- app/src/main/java/org/fdroid/fdroid/data/App.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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;