Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/Gist.java')
-rw-r--r--org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/Gist.java22
1 files changed, 2 insertions, 20 deletions
diff --git a/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/Gist.java b/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/Gist.java
index bf269948..f8e3a584 100644
--- a/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/Gist.java
+++ b/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/Gist.java
@@ -10,8 +10,6 @@
*******************************************************************************/
package org.eclipse.egit.github.core;
-import com.google.gson.annotations.SerializedName;
-
import java.io.Serializable;
import java.util.Date;
import java.util.List;
@@ -19,6 +17,8 @@ import java.util.Map;
import org.eclipse.egit.github.core.util.DateUtils;
+import com.google.gson.annotations.SerializedName;
+
/**
* GitHub gist model class.
*/
@@ -261,22 +261,4 @@ public class Gist implements Serializable {
this.owner = owner;
return this;
}
-
- /**
- * @return user
- */
- @Deprecated
- public User getUser() {
- return owner;
- }
-
- /**
- * @param user
- * @return this gist
- */
- @Deprecated
- public Gist setUser(User user) {
- this.owner = user;
- return this;
- }
}

Back to the top