You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2021/11/28 15:15:53 UTC

[commons-vfs] branch master updated: Fix Checkstyle HideUtilityClassConstructor.

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


The following commit(s) were added to refs/heads/master by this push:
     new 2165ba3  Fix Checkstyle HideUtilityClassConstructor.
2165ba3 is described below

commit 2165ba35ecf770ab44de24dfd0e49d1769bde96a
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Nov 28 10:15:50 2021 -0500

    Fix Checkstyle HideUtilityClassConstructor.
---
 .../src/main/java/org/apache/commons/vfs2/provider/RFC2396.java         | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/RFC2396.java b/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/RFC2396.java
index 77b18ed..f0fc841 100644
--- a/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/RFC2396.java
+++ b/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/RFC2396.java
@@ -130,4 +130,6 @@ final class RFC2396 {
     // RFC 2396 userinfo chars which are unescaped, here sorted.
     static final char[] USERINFO_UNESCAPED = ArraySorter.sort(ArrayUtils.addAll(UNRESERVED, ';', ':', '&', '=', '+', '$', ','));
 
+    private RFC2396() {
+    }
 }