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
68490332
Commit
68490332
authored
Oct 27, 2018
by
Greg Messner
Browse files
Fixed javadoc issues.
parent
4c028c4f
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/main/java/org/gitlab4j/api/GitLabApiException.java
View file @
68490332
...
@@ -151,10 +151,10 @@ public class GitLabApiException extends Exception {
...
@@ -151,10 +151,10 @@ public class GitLabApiException extends Exception {
}
}
/**
/**
* Returns a Map
<
String, List
<
String
>>
instance containing validation errors if this GitLabApiException
* Returns a Map
<
String, List
<
String
>>
instance containing validation errors if this GitLabApiException
* was caused by validation errors on the GitLab server, otherwise returns null.
* was caused by validation errors on the GitLab server, otherwise returns null.
*
*
* @return a Map
<
String, List
<
String
>>
instance containing validation errors if this GitLabApiException
* @return a Map
<
String, List
<
String
>>
instance containing validation errors if this GitLabApiException
* was caused by validation errors on the GitLab server, otherwise returns null
* was caused by validation errors on the GitLab server, otherwise returns null
*/
*/
public
Map
<
String
,
List
<
String
>>
getValidationErrors
()
{
public
Map
<
String
,
List
<
String
>>
getValidationErrors
()
{
...
...
src/main/java/org/gitlab4j/api/utils/JacksonJson.java
View file @
68490332
...
@@ -251,7 +251,7 @@ public class JacksonJson extends JacksonJaxbJsonProvider implements ContextResol
...
@@ -251,7 +251,7 @@ public class JacksonJson extends JacksonJaxbJsonProvider implements ContextResol
* @return a JsonNode with the String parsed into a JSON tree
* @return a JsonNode with the String parsed into a JSON tree
* @throws IOException if any IO error occurs
* @throws IOException if any IO error occurs
*/
*/
public
static
JsonNode
toJsonNode
(
String
json
)
throws
IOException
{
public
static
JsonNode
toJsonNode
(
String
json
String
)
throws
IOException
{
return
(
JacksonJsonSingletonHelper
.
JACKSON_JSON
.
objectMapper
.
readTree
(
json
));
return
(
JacksonJsonSingletonHelper
.
JACKSON_JSON
.
objectMapper
.
readTree
(
json
String
));
}
}
}
}
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