Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/service/DataService.java')
-rw-r--r--org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/service/DataService.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/service/DataService.java b/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/service/DataService.java
index 9a56cc39..2680303b 100644
--- a/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/service/DataService.java
+++ b/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/service/DataService.java
@@ -436,6 +436,7 @@ public class DataService extends GitHubService {
* @param repository
* @return non-null but possibly empty list of references
* @throws IOException
+ * @since 5.3
*/
public List<Reference> listTags(IRepositoryIdProvider repository)
throws IOException {
@@ -491,6 +492,7 @@ public class DataService extends GitHubService {
* @param repository
* @param reference
* @throws IOException
+ * @since 5.3
*/
public void deleteReference(IRepositoryIdProvider repository,
Reference reference) throws IOException {
@@ -522,6 +524,7 @@ public class DataService extends GitHubService {
* @param repository
* @param branchName
* @throws IOException
+ * @since 5.3
*/
public void deleteBranch(IRepositoryIdProvider repository,
String branchName) throws IOException {
@@ -544,6 +547,7 @@ public class DataService extends GitHubService {
* @param repository
* @param tag
* @throws IOException
+ * @since 5.3
*/
public void deleteTag(IRepositoryIdProvider repository, Tag tag)
throws IOException {

Back to the top