You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by pa...@apache.org on 2017/10/01 12:04:58 UTC

commons-io git commit: add javadoc comment to ByteOrderUtils constructor (fixes checkstyle violation)

Repository: commons-io
Updated Branches:
  refs/heads/master 928da12b1 -> 863808f1b


add javadoc comment to ByteOrderUtils constructor (fixes checkstyle violation)


Project: http://git-wip-us.apache.org/repos/asf/commons-io/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-io/commit/863808f1
Tree: http://git-wip-us.apache.org/repos/asf/commons-io/tree/863808f1
Diff: http://git-wip-us.apache.org/repos/asf/commons-io/diff/863808f1

Branch: refs/heads/master
Commit: 863808f1b8359ab9a79b206cf743db728ac17d48
Parents: 928da12
Author: pascalschumacher <pa...@gmx.net>
Authored: Sun Oct 1 14:04:52 2017 +0200
Committer: pascalschumacher <pa...@gmx.net>
Committed: Sun Oct 1 14:04:52 2017 +0200

----------------------------------------------------------------------
 src/main/java/org/apache/commons/io/ByteOrderUtils.java | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-io/blob/863808f1/src/main/java/org/apache/commons/io/ByteOrderUtils.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/io/ByteOrderUtils.java b/src/main/java/org/apache/commons/io/ByteOrderUtils.java
index e7a66f5..96ca446 100644
--- a/src/main/java/org/apache/commons/io/ByteOrderUtils.java
+++ b/src/main/java/org/apache/commons/io/ByteOrderUtils.java
@@ -39,6 +39,9 @@ public final class ByteOrderUtils {
      */
     public static final String LITTLE_ENDIAN = "Little";
 
+    /**
+     * ByteOrderUtils is a static utility class, so prevent construction with a private constructor.
+     */
     private ByteOrderUtils() {
     }