Skip to content

Commit 14090b2

Browse files
committed
continue
1 parent 2273c85 commit 14090b2

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

src/main/java/org/scm4j/vcs/svn/SVNVCS.java

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -697,4 +697,17 @@ public VCSTag getLastTag() {
697697
throw new RuntimeException(e);
698698
}
699699
}
700+
701+
@Override
702+
public void removeTag(String tagName) {
703+
try {
704+
clientManager
705+
.getCommitClient()
706+
.doDelete(new SVNURL[] { SVNURL.parseURIEncoded(repoUrl + TAGS_PATH + tagName) }, null);
707+
} catch (SVNException e) {
708+
throw new EVCSException(e);
709+
} catch (Exception e) {
710+
throw new RuntimeException(e);
711+
}
712+
}
700713
}

0 commit comments

Comments
 (0)