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


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

commit 0714196b401c988db66e272b12be3aa34df07cbd
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sat Jul 8 08:17:27 2023 -0400

    Fix formatting
---
 core/src/main/java/org/apache/commons/jelly/JellyException.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/src/main/java/org/apache/commons/jelly/JellyException.java 
b/core/src/main/java/org/apache/commons/jelly/JellyException.java
index 3a5635d2..cac39d42 100644
--- a/core/src/main/java/org/apache/commons/jelly/JellyException.java
+++ b/core/src/main/java/org/apache/commons/jelly/JellyException.java
@@ -65,7 +65,7 @@ public class JellyException extends Exception implements 
LocationAware {
     }
     
     public JellyException(String reason, Throwable cause, String fileName, 
String elementName, int columnNumber, int lineNumber) {
-        super( (reason==null?cause.getClass().getName():reason) );
+        super( (reason == null ? cause.getClass().getName() : reason) );
         this.cause = cause;
         this.fileName = fileName;
         this.elementName = elementName;

Reply via email to