src.samples.java.ex.CAAL_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.util.Arrays;
import java.util.List;
public class CAAL_Sample {
public void testCAAL(int[] v) {
List l = Arrays.asList(v);
}
public void testCAAL(char[] v) {
List l = Arrays.asList(v);
}
public void testCAAL(byte[] v) {
List l = Arrays.asList(v);
}
public void testCAAL(short[] v) {
List l = Arrays.asList(v);
}
public void testCAAL(long[] v) {
List l = Arrays.asList(v);
}
public void testCAAL(float[] v) {
List l = Arrays.asList(v);
}
public void testCAAL(double[] v) {
List l = Arrays.asList(v);
}
public void testCAAL(boolean[] v) {
List l = Arrays.asList(v);
}
public void testFPTwoArrays(char[] a, char[] b) {
List l = Arrays.asList(a, b);
}
}