FunctionsTest whitespace after comma

Add a space after the comma as per the project's Checkstyle rules
This commit is contained in:
Allon Mureinik 2019-02-08 19:37:38 +02:00
parent 5e315d1ac9
commit 19a5a09b09
1 changed files with 1 additions and 1 deletions

View File

@ -276,7 +276,7 @@ class FunctionsTest {
@Test @Test
public void testTryWithResources() { public void testTryWithResources() {
final CloseableObject co = new CloseableObject(); final CloseableObject co = new CloseableObject();
final FailableConsumer<Throwable,? extends Throwable> consumer = co::run; final FailableConsumer<Throwable, ? extends Throwable> consumer = co::run;
final IllegalStateException ise = new IllegalStateException(); final IllegalStateException ise = new IllegalStateException();
try { try {
Functions.tryWithResources(() -> consumer.accept(ise), co::close); Functions.tryWithResources(() -> consumer.accept(ise), co::close);