diff --git a/src/main/java/com/omertron/themoviedbapi/model/person/PersonFind.java b/src/main/java/com/omertron/themoviedbapi/model/person/PersonFind.java index 0aebabd78..b5d04e7e0 100644 --- a/src/main/java/com/omertron/themoviedbapi/model/person/PersonFind.java +++ b/src/main/java/com/omertron/themoviedbapi/model/person/PersonFind.java @@ -39,8 +39,6 @@ public class PersonFind extends PersonBasic { private Boolean adult; @JsonProperty("popularity") private Float popularity; - @JsonProperty("profile_path") - private String profilePath; private List knownFor; public Boolean getAdult() { @@ -59,14 +57,6 @@ public class PersonFind extends PersonBasic { this.popularity = popularity; } - public String getProfilePath() { - return profilePath; - } - - public void setProfilePath(String profilePath) { - this.profilePath = profilePath; - } - public List getKnownFor() { return knownFor; }