Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
elharo committed Nov 21, 2024
1 parent c22759d commit 42e254f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,14 @@
/**
* @author Olivier Lamy
* @since 2.5
*
*/
public interface CheckstyleExecutor {

/**
* @param request {@link CheckstyleExecutorRequest}
* @return {@link CheckstyleResults}
* @throws CheckstyleExecutorException in case of an error during plugin execution.
* @throws CheckstyleException in case of an error raised by Checkstyle.
* @throws CheckstyleExecutorException in case of an error during plugin execution
* @throws CheckstyleException in case of an error raised by Checkstyle
*/
CheckstyleResults executeCheckstyle(CheckstyleExecutorRequest request)
throws CheckstyleExecutorException, CheckstyleException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,14 @@
import org.codehaus.plexus.resource.loader.FileResourceLoader;
import org.codehaus.plexus.resource.loader.ResourceNotFoundException;
import org.codehaus.plexus.util.FileUtils;
import org.eclipse.sisu.Typed;

/**
* @author Olivier Lamy
* @since 2.5
*/
@Named("default")
@Typed(CheckstyleExecutor.class)
public class DefaultCheckstyleExecutor extends AbstractLogEnabled implements CheckstyleExecutor {
private final ResourceManager locator;

Expand Down

0 comments on commit 42e254f

Please sign in to comment.