src.samples.java.ex.PRMC_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;
import java.nio.ByteBuffer;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Calendar;
import java.util.Date;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import com.google.common.collect.ImmutableSet;
import com.google.common.collect.Lists;
import edu.emory.mathcs.backport.java.util.Collections;
@SuppressWarnings("all")
public class PRMC_Sample {
private static PRMC_Sample SAMPLE1;
private static PRMC_Sample SAMPLE2;
String data;
String[] array1;
String[] array2;
public boolean test1(Calendar c) {
Date d = c.getTime();
long l = d.getTime();
Date e = c.getTime();
long j = e.getTime();
return l == j;
}
public void rmcFP(ByteBuffer bb) {
int i = bb.getInt();
int j = bb.getInt();
}
@Override
public boolean equals(Object o) {
PRMC_Sample rmc = (PRMC_Sample) o;
if (data.equals("INF") || rmc.data.equals("INF")) {
return false;
}
return data.equals(rmc.data);
}
public void staticPRMC() {
Factory.getInstance().fee();
Factory.getInstance().fi();
Factory.getInstance().fo();
Factory.getInstance().fum();
}
public void repeatedEmptyArrays() {
System.out.println(Arrays.asList(new Integer[0]));
System.out.println(Arrays.asList(new Integer[0]));
}
static class Factory {
private static Factory f = new Factory();
private Factory() {
}
public static Factory getInstance() {
return f;
}
public void fee() {
}
public void fi() {
}
public void fo() {
}
public void fum() {
}
}
public long fpCurrentTimeMillis(Object o) {
long time = -System.currentTimeMillis();
o.hashCode();
time += System.currentTimeMillis();
return time;
}
public void fpEnumToString(FPEnum e) {
Set s = new HashSet<>();
s.add(FPEnum.fee.toString());
s.add(FPEnum.fi.toString());
s.add(FPEnum.fo.toString());
s.add(FPEnum.fum.toString());
}
public void emptyList() {
List l = Collections.emptyList();
List o = Collections.emptyList();
List p = Collections.emptyList();
}
enum FPEnum {
fee, fi, fo, fum
};
public boolean validChainedFields(Chain c1) {
return c1.chainedField.toString().equals(c1.chainedField.toString());
}
public boolean fpChainedFieldsOfDiffBases(Chain c1, Chain c2) {
return c1.chainedField.toString().equals(c2.chainedField.toString());
}
public void fpMultipleStatics() {
SAMPLE1 = new PRMC_Sample();
SAMPLE1.setValue(5);
SAMPLE2 = new PRMC_Sample();
SAMPLE2.setValue(5);
}
public void fpWithGuava() {
List l = Lists.newArrayList();
List ll = Lists.newArrayList();
}
public void fpAsListLiterals() {
System.out.println(Arrays.asList("foo"));
System.out.println(Arrays.asList("bar"));
}
public void fpWithFinally() {
Object foo = new Object();
try {
willThrow();
System.err.println(foo.toString());
} finally {
System.out.println(foo.toString());
}
}
public void fpWithGenericReturn() {
Set s = ImmutableSet.of();
Set i = ImmutableSet.of();
}
void willThrow() {
throw new RuntimeException("kaboom!");
}
public void fpIgnoreCommonBoxing(Integer i) {
setTwo(i, i);
setTwo(3.1, 3.1);
}
public void setTwo(int i, int j) {
}
public void setTwo(Double d, Double e) {
}
public void setValue(int i) {
}
class Chain {
public Chain chainedField;
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("--");
sb.append("XX");
sb.append("--");
sb.append("XX");
sb.append("--");
sb.append("XX");
sb.append("--");
sb.append("XX");
sb.append("--");
sb.append("XX");
sb.append("--");
return sb.toString();
}
}
class SFIssue71 {
protected String[] inc = new String[0];
protected String[] dec = new String[0];
public void fplog() {
System.out.println(Arrays.toString(inc));
System.out.println(Arrays.toString(dec));
}
}
}
class PRMCPar {
List c = new ArrayList<>();
public void fpSuperCall() {
c.add("FP");
}
}
class PRMCChild extends PRMCPar {
@Override
public void fpSuperCall() {
if (c.isEmpty()) {
super.fpSuperCall();
if (c.isEmpty()) {
System.out.println("False Positive");
}
}
}
}