You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by pa...@apache.org on 2019/02/08 18:45:17 UTC

[commons-lang] 10/13: FunctionsTest whitespace after comma

This is an automated email from the ASF dual-hosted git repository.

pascalschumacher pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-lang.git

commit 19a5a09b092cf7e225de3ded6f7bd355ab9abed8
Author: Allon Mureinik <mu...@gmail.com>
AuthorDate: Fri Feb 8 19:37:38 2019 +0200

    FunctionsTest whitespace after comma
    
    Add a space after the comma as per the project's Checkstyle rules
---
 src/test/java/org/apache/commons/lang3/FunctionsTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test/java/org/apache/commons/lang3/FunctionsTest.java b/src/test/java/org/apache/commons/lang3/FunctionsTest.java
index a161f9b..3e360ee 100644
--- a/src/test/java/org/apache/commons/lang3/FunctionsTest.java
+++ b/src/test/java/org/apache/commons/lang3/FunctionsTest.java
@@ -276,7 +276,7 @@ class FunctionsTest {
 	@Test
 	public void testTryWithResources() {
 		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();
 		try {
 			Functions.tryWithResources(() -> consumer.accept(ise), co::close);