This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-scxml.git
commit e84249796c89c8fc2d138da5f6ccc9a325000ede Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Thu Sep 12 10:41:50 2024 -0400 Remove redundant syntax --- src/test/java/org/apache/commons/scxml2/io/SCXMLReaderTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/apache/commons/scxml2/io/SCXMLReaderTest.java b/src/test/java/org/apache/commons/scxml2/io/SCXMLReaderTest.java index da4b35da..9dbee4fc 100644 --- a/src/test/java/org/apache/commons/scxml2/io/SCXMLReaderTest.java +++ b/src/test/java/org/apache/commons/scxml2/io/SCXMLReaderTest.java @@ -121,7 +121,7 @@ public class SCXMLReaderTest { @Override protected boolean isLevelEnabled(final int logLevel) { - return (logLevel >= LOG_LEVEL_INFO); + return logLevel >= LOG_LEVEL_INFO; } @Override