Skip to content

Commit 6849033

Browse files
committed
Fixed javadoc issues.
1 parent 4c028c4 commit 6849033

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/main/java/org/gitlab4j/api/GitLabApiException.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,10 +151,10 @@ public boolean hasValidationErrors() {
151151
}
152152

153153
/**
154-
* Returns a Map<String, List<String>> instance containing validation errors if this GitLabApiException
154+
* Returns a Map&lt;String, List&lt;String&gt;&gt; instance containing validation errors if this GitLabApiException
155155
* was caused by validation errors on the GitLab server, otherwise returns null.
156156
*
157-
* @return a Map<String, List<String>> instance containing validation errors if this GitLabApiException
157+
* @return a Map&lt;String, List&lt;String&gt;&gt; instance containing validation errors if this GitLabApiException
158158
* was caused by validation errors on the GitLab server, otherwise returns null
159159
*/
160160
public Map<String, List<String>> getValidationErrors() {

src/main/java/org/gitlab4j/api/utils/JacksonJson.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ public static <T> String toJsonString(final T object) {
251251
* @return a JsonNode with the String parsed into a JSON tree
252252
* @throws IOException if any IO error occurs
253253
*/
254-
public static JsonNode toJsonNode(String json) throws IOException {
255-
return (JacksonJsonSingletonHelper.JACKSON_JSON.objectMapper.readTree(json));
254+
public static JsonNode toJsonNode(String jsonString) throws IOException {
255+
return (JacksonJsonSingletonHelper.JACKSON_JSON.objectMapper.readTree(jsonString));
256256
}
257257
}

0 commit comments

Comments
 (0)