We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef3ffb7 commit 2e90153Copy full SHA for 2e90153
1 file changed
src/main/java/org/gitlab4j/api/models/Commit.java
@@ -246,7 +246,15 @@ public Commit withParentIds(List<String> parentIds) {
246
return this;
247
}
248
249
+ /**
250
+ * @deprecated use {@link #withShortId(String)} instead
251
+ */
252
+ @Deprecated
253
public Commit withShorwId(String shortId) {
254
+ return withShortId(shortId);
255
+ }
256
+
257
+ public Commit withShortId(String shortId) {
258
this.shortId = shortId;
259
260
0 commit comments