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() {
151151 }
152152
153153 /**
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
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< String, List< String>> 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 () {
Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments