Unnecessary @SuppressWarnings

This commit is contained in:
Gary Gregory 2024-05-23 08:33:13 -04:00
parent 1af3724664
commit a4db8997f0
1 changed files with 0 additions and 2 deletions

View File

@ -545,7 +545,6 @@ public class ArrayUtilsRemoveTest extends AbstractLangTest {
}
@Test
@SuppressWarnings("cast")
public void testRemoveElementDoubleArray() {
double[] array;
array = ArrayUtils.removeElement(null, (double) 1);
@ -565,7 +564,6 @@ public class ArrayUtilsRemoveTest extends AbstractLangTest {
}
@Test
@SuppressWarnings("cast")
public void testRemoveElementFloatArray() {
float[] array;
array = ArrayUtils.removeElement((float[]) null, 1);