Skip to content

Commit

Permalink
removing references to RedundantThrows
Browse files Browse the repository at this point in the history
  • Loading branch information
jrdalpra committed Dec 29, 2015
1 parent 83acdfc commit 43cdf70
Show file tree
Hide file tree
Showing 12 changed files with 0 additions and 227 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ public final class CheckstyleValidator implements Validator {

/**
* {@inheritDoc}
* @checkstyle RedundantThrows (3 lines)
*/
@Override
public void validate(final Environment env) throws ValidationException {
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ public final class FindBugsValidator implements Validator {

/**
* {@inheritDoc}
* @checkstyle RedundantThrows (3 lines)
*/
@Override
public void validate(final Environment env) throws ValidationException {
Expand Down Expand Up @@ -229,7 +228,6 @@ private File jar(final Class<?> resource) {
* Check report for errors.
* @param report The report
* @throws ValidationException If it contains errors
* @checkstyle RedundantThrows (3 lines)
*/
private void check(final String report) throws ValidationException {
int total = 0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
public final class CoberturaValidator implements MavenValidator {

// @checkstyle MultipleStringLiterals (30 lines)
// @checkstyle RedundantThrows (4 lines)
@Override
public void validate(final MavenEnvironment env)
throws ValidationException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ final class DependenciesValidator implements MavenValidator {
*/
private static final String SEP = "\n\t";

// @checkstyle RedundantThrows (4 lines)
@Override
public void validate(final MavenEnvironment env)
throws ValidationException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@
public final class DuplicateFinderValidator implements MavenValidator {

// @checkstyle MultipleStringLiterals (20 lines)
// @checkstyle RedundantThrows (4 lines)
// @checkstyle MethodBodyCommentsCheck (50 lines)
// @todo #250 Fix a problem with maven configuration of duplicate finder
// plugin in commented out code below, and enable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
public final class EnforcerValidator implements MavenValidator {

// @checkstyle MultipleStringLiterals (20 lines)
// @checkstyle RedundantThrows (4 lines)
@Override
public void validate(final MavenEnvironment env)
throws ValidationException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ interface MavenValidator {
* Validate this environment.
* @param env The environment
* @throws ValidationException In case of violations
* @checkstyle RedundantThrows (4 lines)
*/
void validate(final MavenEnvironment env) throws ValidationException;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ public MojoExecutor(final MavenPluginManager mngr,
* @param goal Maven plugin goal to execute
* @param config The configuration to set
* @throws ValidationException If something is wrong inside
* @checkstyle RedundantThrows (4 lines)
*/
public void execute(final String coords, final String goal,
final Properties config) throws ValidationException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@
*/
public final class PomXpathValidator implements MavenValidator {

// @checkstyle RedundantThrows (4 lines)
@Override
public void validate(final MavenEnvironment env)
throws ValidationException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
*/
public final class SnapshotsValidator implements MavenValidator {

// @checkstyle RedundantThrows (4 lines)
@Override
public void validate(final MavenEnvironment env)
throws ValidationException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@
*/
public final class SvnPropertiesValidator implements MavenValidator {

// @checkstyle RedundantThrows (4 lines)
@Override
public void validate(final MavenEnvironment env)
throws ValidationException {
Expand All @@ -80,7 +79,6 @@ public void validate(final MavenEnvironment env)
* Validate directory.
* @param dir The directory
* @throws ValidationException If fails
* @checkstyle RedundantThrows (4 lines)
*/
private void validate(final File dir) throws ValidationException {
final Collection<File> files = FileUtils.listFiles(
Expand Down

0 comments on commit 43cdf70

Please sign in to comment.