Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Sohn2018-03-10 00:37:39 +0000
committerMatthias Sohn2018-03-16 23:55:55 +0000
commit44e57f5a2041abfe7591069c3032a7e869adfda4 (patch)
tree8b156ce11bb0f3eecbe0771368a05724a11b3059 /org.eclipse.egit.github.core/src
parentcb53b5f66682410b2ba7e71222d4669f46c12cd7 (diff)
downloadegit-github-44e57f5a2041abfe7591069c3032a7e869adfda4.tar.gz
egit-github-44e57f5a2041abfe7591069c3032a7e869adfda4.tar.xz
egit-github-44e57f5a2041abfe7591069c3032a7e869adfda4.zip
Remove deprecated User#getGravatarId and #setGravatarId
Change-Id: I13f82ce01166752fe18eb5fdf8a3168e743d8249 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.egit.github.core/src')
-rw-r--r--org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/User.java20
1 files changed, 0 insertions, 20 deletions
diff --git a/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/User.java b/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/User.java
index 1fe5743f..e308ace4 100644
--- a/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/User.java
+++ b/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/User.java
@@ -356,26 +356,6 @@ public class User implements Serializable {
}
/**
- * @return gravatarId
- * @deprecated
- */
- @Deprecated
- public String getGravatarId() {
- return gravatarId;
- }
-
- /**
- * @param gravatarId
- * @return this user
- * @deprecated
- */
- @Deprecated
- public User setGravatarId(String gravatarId) {
- this.gravatarId = gravatarId;
- return this;
- }
-
- /**
* @return htmlUrl
*/
public String getHtmlUrl() {

Back to the top