Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/Repository.java22
1 files changed, 2 insertions, 20 deletions
diff --git a/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/Repository.java b/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/Repository.java
index c84ee587..132838ce 100644
--- a/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/Repository.java
+++ b/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/Repository.java
@@ -10,13 +10,13 @@
*****************************************************************************/
package org.eclipse.egit.github.core;
-import com.google.gson.annotations.SerializedName;
-
import java.io.Serializable;
import java.util.Date;
import org.eclipse.egit.github.core.util.DateUtils;
+import com.google.gson.annotations.SerializedName;
+
/**
* Repository model class
*/
@@ -403,24 +403,6 @@ public class Repository implements IRepositoryIdProvider, Serializable {
}
/**
- * @return masterBranch
- */
- @Deprecated
- public String getMasterBranch() {
- return defaultBranch;
- }
-
- /**
- * @param masterBranch
- * @return this repository
- */
- @Deprecated
- public Repository setMasterBranch(String masterBranch) {
- this.defaultBranch = masterBranch;
- return this;
- }
-
- /**
* @return mirrorUrl
*/
public String getMirrorUrl() {

Back to the top