dev.youshallnotpass.inspection.SimpleViolations Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-inspections Show documentation
Show all versions of java-inspections Show documentation
Java inspections library for youshallnotpass
The newest version!
package dev.youshallnotpass.inspection;
import java.util.List;
public final class SimpleViolations implements Violations {
private final List aViolations;
public SimpleViolations(final List aViolations) {
this.aViolations = aViolations;
}
@Override
public List asList() {
return aViolations;
}
}