[ofbiz-framework] branch trunk updated: Fixed: Remove unneeded space after parenthesis

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

[ofbiz-framework] branch trunk updated: Fixed: Remove unneeded space after parenthesis

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

nmalin pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git


The following commit(s) were added to refs/heads/trunk by this push:
     new bc0b80b  Fixed: Remove unneeded space after parenthesis
bc0b80b is described below

commit bc0b80b46652ea393cbb2dc0adc824f93f40b8cf
Author: Nicolas Malin <[hidden email]>
AuthorDate: Mon Nov 25 09:13:18 2019 +0100

    Fixed: Remove unneeded space after parenthesis
---
 .../src/main/java/org/apache/ofbiz/datafile/RecordIterator.java         | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/framework/datafile/src/main/java/org/apache/ofbiz/datafile/RecordIterator.java b/framework/datafile/src/main/java/org/apache/ofbiz/datafile/RecordIterator.java
index 7431cee..af38443 100644
--- a/framework/datafile/src/main/java/org/apache/ofbiz/datafile/RecordIterator.java
+++ b/framework/datafile/src/main/java/org/apache/ofbiz/datafile/RecordIterator.java
@@ -74,7 +74,7 @@ public class RecordIterator {
             this.br = new BufferedReader(new InputStreamReader(dataFileStream, Charset.forName(charsetStr)));
         }
         catch (Exception e) {
-            throw new DataFileException( charsetStr + " is not supported");
+            throw new DataFileException(charsetStr + " is not supported");
         }
         //move the cursor to the good start line
         try {