Statement lambda can be replaced with expression lambda
This commit is contained in:
parent
2327a11eca
commit
37b5df83c5
|
@ -24,9 +24,7 @@ class ExceptionUnitTest {
|
|||
@Test
|
||||
void assertThrowsException() {
|
||||
String str = null;
|
||||
assertThrows(IllegalArgumentException.class, () -> {
|
||||
Integer.valueOf(str);
|
||||
});
|
||||
assertThrows(IllegalArgumentException.class, () -> Integer.valueOf(str));
|
||||
}
|
||||
|
||||
@Test
|
||||
|
|
Loading…
Reference in New Issue