Unverified Commit 2e90153a authored by Jérémie Bresson's avatar Jérémie Bresson Committed by GitHub
Browse files

Fix typo "withShorwId" should be "withShortId" (#1085)

Fixes #1082
parent ef3ffb73
......@@ -246,7 +246,15 @@ public class Commit implements Serializable {
return this;
}
/**
* @deprecated use {@link #withShortId(String)} instead
*/
@Deprecated
public Commit withShorwId(String shortId) {
return withShortId(shortId);
}
public Commit withShortId(String shortId) {
this.shortId = shortId;
return this;
}
......
Supports Markdown
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