This is an automated email from the ASF dual-hosted git repository. chtompki pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-lang.git
The following commit(s) were added to refs/heads/master by this push: new 24ebbb0 (fix) checkstyle violation 24ebbb0 is described below commit 24ebbb069b59c7729010ce7c7a7c59b28a4620ef Author: Rob Tompkins <chtom...@gmail.com> AuthorDate: Wed Apr 10 15:39:35 2019 -0400 (fix) checkstyle violation --- src/test/java/org/apache/commons/lang3/reflect/FieldUtilsTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/apache/commons/lang3/reflect/FieldUtilsTest.java b/src/test/java/org/apache/commons/lang3/reflect/FieldUtilsTest.java index 39239ef..9a8ca15 100644 --- a/src/test/java/org/apache/commons/lang3/reflect/FieldUtilsTest.java +++ b/src/test/java/org/apache/commons/lang3/reflect/FieldUtilsTest.java @@ -1052,7 +1052,7 @@ public class FieldUtilsTest { try { FieldUtils.removeFinalModifier(field, forceAccess); } catch (UnsupportedOperationException exception) { - if(SystemUtils.isJavaVersionAtLeast(JavaVersion.JAVA_12)) { + if (SystemUtils.isJavaVersionAtLeast(JavaVersion.JAVA_12)) { assertTrue(exception.getCause() instanceof NoSuchFieldException); } else { fail("No exception should be thrown for java prior to 12.0");