Skip to content
This repository has been archived by the owner on Jul 3, 2022. It is now read-only.

Commit

Permalink
Javadoc Warnings resolved
Browse files Browse the repository at this point in the history
  • Loading branch information
edelbluth committed Oct 10, 2016
1 parent 3e078a8 commit 90e02a7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
Expand Up @@ -36,6 +36,7 @@ abstract class AbstractMojoExecution extends AbstractMojo {
* @param key Key for basic configuration (Script, Filename, etc.)
* @param value Value for basic configuration
* @param executor Executor class
* @param extraContext extra key-value pairs for the execution context
* @throws MojoExecutionException when something goes wrong
*/
@SafeVarargs
Expand Down
Expand Up @@ -34,6 +34,8 @@ interface IJythonExecutor

/**
* The execution itself
*
* @throws IOException when something gone wrong with accessing the script
*/
@SuppressWarnings("RedundantThrows")
void executeJython() throws IOException;
Expand Down
Expand Up @@ -33,6 +33,7 @@ final class JythonExecutor {
* @param context the context for the execution
* @throws IllegalAccessException on an illegal access to the executor class
* @throws InstantiationException on an instantiation exception with the executor class
* @throws IOException when something gone wrong with accessing the script
*/
static void execute(Class<? extends IJythonExecutor> executor, Map<String, String> context) throws IllegalAccessException, InstantiationException, IOException {
final IJythonExecutor jythonExecutor = executor.newInstance();
Expand All @@ -47,6 +48,7 @@ static void execute(Class<? extends IJythonExecutor> executor, Map<String, Strin
* @param contextValues The pairs of context data
* @throws IllegalAccessException on an illegal access to the executor class
* @throws InstantiationException on an instantiation exception with the executor class
* @throws IOException when something gone wrong with accessing the script
*/
@SafeVarargs
static void execute(Class<? extends IJythonExecutor> executor, AbstractMap.SimpleEntry<String, String>... contextValues) throws InstantiationException, IllegalAccessException, IOException {
Expand Down

0 comments on commit 90e02a7

Please sign in to comment.