Move comment to correct field.

This commit is contained in:
Peter Serwylo 2017-07-05 17:18:51 +10:00
parent 504854547b
commit 073cb199fc

View File

@ -82,13 +82,6 @@ public class App extends ValueObject implements Comparable<App>, 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<App>, 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;