From 34c019a86c46a227e1115bab4ea81e728598f0ee Mon Sep 17 00:00:00 2001 From: Stuart Boston Date: Thu, 5 Mar 2015 08:23:55 +0000 Subject: [PATCH] Update PersonFind to remove profile path (in Basic model) --- .../themoviedbapi/model/person/PersonFind.java | 10 ---------- 1 file changed, 10 deletions(-) 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; }