src.samples.java.ex.ACEM_Sample Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fb-contrib Show documentation
Show all versions of fb-contrib Show documentation
An auxiliary findbugs.sourceforge.net plugin for java bug detectors that fall outside the narrow scope of detectors to be packaged with the product itself.
package ex;
public abstract class ACEM_Sample implements Foo {
public static final Runnable fpNOP283 = () -> {
};
public void test() {
}
public int test1() {
throw new UnsupportedOperationException("Not implemented");
}
@Override
public void doFPFoo() {
}
}
interface Foo {
void doFPFoo();
}