You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by bo...@apache.org on 2020/01/23 20:12:41 UTC

[commons-compress] branch master updated: Sonar want the comment on a different line, so be it

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

bodewig pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-compress.git


The following commit(s) were added to refs/heads/master by this push:
     new 1a04946  Sonar want the comment on a different line, so be it
1a04946 is described below

commit 1a04946e86a79c22122f2f40def9546369583e81
Author: Stefan Bodewig <bo...@apache.org>
AuthorDate: Thu Jan 23 21:12:17 2020 +0100

    Sonar want the comment on a different line, so be it
---
 .../java/org/apache/commons/compress/archivers/sevenz/SevenZFile.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZFile.java b/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZFile.java
index e51fb55..1e1b263 100644
--- a/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZFile.java
+++ b/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZFile.java
@@ -850,8 +850,8 @@ public class SevenZFile implements Closeable {
             }
             // would need to keep looping as above:
             while (moreAlternativeMethods) {
-                throw new IOException("Alternative methods are unsupported, please report. " +
-                    "The reference implementation doesn't support them either."); // NOSONAR
+                throw new IOException("Alternative methods are unsupported, please report. " + // NOSONAR
+                    "The reference implementation doesn't support them either.");
             }
         }
         folder.coders = coders;