Skip to content

Commit b17095c

Browse files
bonzanitimols
authored andcommitted
Change type of GitlabTag commit property to GitlabCommit. (timols#336)
Signed-off-by: Patrizio Bonzani <[email protected]>
1 parent 504ec85 commit b17095c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/org/gitlab/api/models/GitlabTag.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ public class GitlabTag {
77
public final static String URL = "/repository/tags";
88

99
@JsonProperty("commit")
10-
private GitlabBranchCommit commit;
10+
private GitlabCommit commit;
1111

1212
@JsonProperty("release")
1313
private GitlabRelease release;
@@ -18,11 +18,11 @@ public class GitlabTag {
1818
@JsonProperty("message")
1919
private String message;
2020

21-
public GitlabBranchCommit getCommit() {
21+
public GitlabCommit getCommit() {
2222
return commit;
2323
}
2424

25-
public void setCommit(GitlabBranchCommit commit) {
25+
public void setCommit(GitlabCommit commit) {
2626
this.commit = commit;
2727
}
2828

0 commit comments

Comments
 (0)