Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 96A09200D07 for ; Sun, 1 Oct 2017 14:05:01 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 8BE6A1609D9; Sun, 1 Oct 2017 12:05:01 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 02BAF1609C0 for ; Sun, 1 Oct 2017 14:05:00 +0200 (CEST) Received: (qmail 33150 invoked by uid 500); 1 Oct 2017 12:05:00 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 33141 invoked by uid 99); 1 Oct 2017 12:05:00 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 01 Oct 2017 12:05:00 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 3F7A8E9688; Sun, 1 Oct 2017 12:04:58 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: pascalschumacher@apache.org To: commits@commons.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: commons-io git commit: add javadoc comment to ByteOrderUtils constructor (fixes checkstyle violation) Date: Sun, 1 Oct 2017 12:04:58 +0000 (UTC) archived-at: Sun, 01 Oct 2017 12:05:01 -0000 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 Authored: Sun Oct 1 14:04:52 2017 +0200 Committer: pascalschumacher 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() { }