Skip to content

Commit

Permalink
Fix javadoc warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
renner committed Feb 9, 2016
1 parent f9fe60c commit 4963b91
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/main/java/com/suse/salt/netapi/calls/modules/Pkg.java
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,7 @@ public static LocalCall<Map<String, List<String>>> listPkgs() {
* Call 'pkg.info_installed' API.
*
* @param attributes list of attributes that should be included in the result
* @param reportErrors if true will return an error message instead of corrupted text
* @param packages optional give package names, otherwise return info about all packages
* @return the call
*/
Expand Down
6 changes: 4 additions & 2 deletions src/main/java/com/suse/salt/netapi/client/SaltClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -544,11 +544,12 @@ public Future<Boolean> sendEventAsync(final String eventTag, final String eventD
/**
* Generic interface to make a {@link Call} to an endpoint using a given {@link Client}.
*
* @param <R> the object type that will be returned
* @param call the call
* @param client the client to use
* @param endpoint the endpoint
* @param custom map of arguments
* @param type return type
* @param type return type as a TypeToken
* @return the result of the call
* @throws SaltException if anything goes wrong
*/
Expand All @@ -570,10 +571,11 @@ public <R> R call(Call<?> call, Client client, String endpoint, Optional<Map<Str
/**
* Convenience method to make a call without arguments.
*
* @param <R> the object type that will be returned
* @param call the call
* @param client the client to use
* @param endpoint the endpoint
* @param type return type
* @param type return type as a TypeToken
* @return the result of the call
* @throws SaltException if anything goes wrong
*/
Expand Down

0 comments on commit 4963b91

Please sign in to comment.