Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
佳 邓
Gitlab4j Api
Commits
2e90153a
Unverified
Commit
2e90153a
authored
Feb 05, 2024
by
Jérémie Bresson
Committed by
GitHub
Feb 05, 2024
Browse files
Fix typo "withShorwId" should be "withShortId" (#1085)
Fixes #1082
parent
ef3ffb73
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/org/gitlab4j/api/models/Commit.java
View file @
2e90153a
...
...
@@ -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
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment