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-jci.git


The following commit(s) were added to refs/heads/master by this push:
     new ceb8399  Fix formatting
ceb8399 is described below

commit ceb839960d0b2d8f0a730958c0313c2d4ff2ebe9
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sat Jul 8 09:33:59 2023 -0400

    Fix formatting
---
 .../org/apache/commons/jci2/compilers/AbstractCompilerTestCase.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/core/src/test/java/org/apache/commons/jci2/compilers/AbstractCompilerTestCase.java
 
b/core/src/test/java/org/apache/commons/jci2/compilers/AbstractCompilerTestCase.java
index 6805638..2a8da13 100644
--- 
a/core/src/test/java/org/apache/commons/jci2/compilers/AbstractCompilerTestCase.java
+++ 
b/core/src/test/java/org/apache/commons/jci2/compilers/AbstractCompilerTestCase.java
@@ -61,11 +61,11 @@ public abstract class AbstractCompilerTestCase extends 
TestCase {
                         "}").getBytes());
                 }};
 
-            public byte[] getBytes( final String pResourceName ) {
+            public byte[] getBytes(final String pResourceName) {
                 return sources.get(pResourceName);
             }
 
-            public boolean isAvailable( final String pResourceName ) {
+            public boolean isAvailable(final String pResourceName) {
                 return sources.containsKey(pResourceName);
             }
 
@@ -81,7 +81,7 @@ public abstract class AbstractCompilerTestCase extends 
TestCase {
         assertEquals(toString(result.getWarnings()), 0, 
result.getWarnings().length);
 
         final byte[] clazzBytes = store.read("jci2/Simple.class");
-        assertNotNull("jci2/Simple.class is not null",clazzBytes);
+        assertNotNull("jci2/Simple.class is not null", clazzBytes);
         assertTrue("jci2/Simple.class is not empty", clazzBytes.length > 0);
     }
 

Reply via email to