Skip to content

Commit 42e254f

Browse files
committed
wip
1 parent c22759d commit 42e254f

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/main/java/org/apache/maven/plugins/checkstyle/exec/CheckstyleExecutor.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,14 @@
2424
/**
2525
* @author Olivier Lamy
2626
* @since 2.5
27-
*
2827
*/
2928
public interface CheckstyleExecutor {
3029

3130
/**
3231
* @param request {@link CheckstyleExecutorRequest}
3332
* @return {@link CheckstyleResults}
34-
* @throws CheckstyleExecutorException in case of an error during plugin execution.
35-
* @throws CheckstyleException in case of an error raised by Checkstyle.
33+
* @throws CheckstyleExecutorException in case of an error during plugin execution
34+
* @throws CheckstyleException in case of an error raised by Checkstyle
3635
*/
3736
CheckstyleResults executeCheckstyle(CheckstyleExecutorRequest request)
3837
throws CheckstyleExecutorException, CheckstyleException;

src/main/java/org/apache/maven/plugins/checkstyle/exec/DefaultCheckstyleExecutor.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,14 @@
5858
import org.codehaus.plexus.resource.loader.FileResourceLoader;
5959
import org.codehaus.plexus.resource.loader.ResourceNotFoundException;
6060
import org.codehaus.plexus.util.FileUtils;
61+
import org.eclipse.sisu.Typed;
6162

6263
/**
6364
* @author Olivier Lamy
6465
* @since 2.5
6566
*/
6667
@Named("default")
68+
@Typed(CheckstyleExecutor.class)
6769
public class DefaultCheckstyleExecutor extends AbstractLogEnabled implements CheckstyleExecutor {
6870
private final ResourceManager locator;
6971

0 commit comments

Comments
 (0)