We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 504ec85 commit b17095cCopy full SHA for b17095c
src/main/java/org/gitlab/api/models/GitlabTag.java
@@ -7,7 +7,7 @@ public class GitlabTag {
7
public final static String URL = "/repository/tags";
8
9
@JsonProperty("commit")
10
- private GitlabBranchCommit commit;
+ private GitlabCommit commit;
11
12
@JsonProperty("release")
13
private GitlabRelease release;
@@ -18,11 +18,11 @@ public class GitlabTag {
18
@JsonProperty("message")
19
private String message;
20
21
- public GitlabBranchCommit getCommit() {
+ public GitlabCommit getCommit() {
22
return commit;
23
}
24
25
- public void setCommit(GitlabBranchCommit commit) {
+ public void setCommit(GitlabCommit commit) {
26
this.commit = commit;
27
28
0 commit comments