File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
src/main/java/org/apache/maven/plugins/checkstyle/exec Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 2424/**
2525 * @author Olivier Lamy
2626 * @since 2.5
27- *
2827 */
2928public 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 ;
Original file line number Diff line number Diff line change 5858import org .codehaus .plexus .resource .loader .FileResourceLoader ;
5959import org .codehaus .plexus .resource .loader .ResourceNotFoundException ;
6060import 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 )
6769public class DefaultCheckstyleExecutor extends AbstractLogEnabled implements CheckstyleExecutor {
6870 private final ResourceManager locator ;
6971
You can’t perform that action at this time.
0 commit comments