Commit 5eb8ef6b authored by claudio.costa's avatar claudio.costa

Changed the 'description' field to 'message' field. The 'description' field it...

Changed the 'description' field to 'message' field. The 'description' field it was apparently deprecated.
parent e42d54df
......@@ -11,7 +11,7 @@ public class GitlabCommit {
private String id;
private String title;
private String description;
private String message;
@JsonProperty("short_id")
private String shortId;
......@@ -58,12 +58,12 @@ public class GitlabCommit {
this.title = title;
}
public String getDescription() {
return description;
public String getMessage() {
return message;
}
public void setDescription(String description) {
this.description = description;
public void setMessage(String message) {
this.message = message;
}
public String getAuthorName() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment