File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/main/java/org/gitlab4j/api Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -151,10 +151,10 @@ public boolean hasValidationErrors() {
151
151
}
152
152
153
153
/**
154
- * Returns a Map< String, List< String>> instance containing validation errors if this GitLabApiException
154
+ * Returns a Map< String, List< String>> instance containing validation errors if this GitLabApiException
155
155
* was caused by validation errors on the GitLab server, otherwise returns null.
156
156
*
157
- * @return a Map< String, List< String>> instance containing validation errors if this GitLabApiException
157
+ * @return a Map< String, List< String>> instance containing validation errors if this GitLabApiException
158
158
* was caused by validation errors on the GitLab server, otherwise returns null
159
159
*/
160
160
public Map <String , List <String >> getValidationErrors () {
Original file line number Diff line number Diff line change @@ -251,7 +251,7 @@ public static <T> String toJsonString(final T object) {
251
251
* @return a JsonNode with the String parsed into a JSON tree
252
252
* @throws IOException if any IO error occurs
253
253
*/
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 ));
256
256
}
257
257
}
You can’t perform that action at this time.
0 commit comments