Remove unused

This commit is contained in:
Gary Gregory 2023-02-10 08:51:55 -05:00
parent ed897b2450
commit 1f297c969c

View File

@ -206,13 +206,13 @@ public class EmptyPropertiesTest {
}
@Test
public void testLoadFromXML() throws IOException {
public void testLoadFromXML() {
assertThrows(UnsupportedOperationException.class,
() -> PropertiesFactory.EMPTY_PROPERTIES.loadFromXML(new ByteArrayInputStream(ArrayUtils.EMPTY_BYTE_ARRAY)));
}
@Test
public void testLoadInputStream() throws IOException {
public void testLoadInputStream() {
assertThrows(UnsupportedOperationException.class, () -> PropertiesFactory.EMPTY_PROPERTIES.load(new ByteArrayInputStream(ArrayUtils.EMPTY_BYTE_ARRAY)));
}