From 5f8dd87a07881ce0b733a17c73a4cd32d01ee12c Mon Sep 17 00:00:00 2001 From: Dominik Stadler Date: Fri, 21 Oct 2016 16:31:37 +0000 Subject: Fix some IDE warnings, JavaDoc, ... git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1766063 13f79535-47bb-0310-9956-ffa450edef68 --- src/java/org/apache/poi/common/usermodel/HyperlinkType.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/java/org/apache/poi/common/usermodel') diff --git a/src/java/org/apache/poi/common/usermodel/HyperlinkType.java b/src/java/org/apache/poi/common/usermodel/HyperlinkType.java index dc88dc5608..41de80062a 100644 --- a/src/java/org/apache/poi/common/usermodel/HyperlinkType.java +++ b/src/java/org/apache/poi/common/usermodel/HyperlinkType.java @@ -57,16 +57,16 @@ public enum HyperlinkType { /** * The codes don't have any real meaning. - * There bytes that are read in and written out from HSSF, HSLF, XSSF, and XSLF are different + * They are bytes that are read in and written out from HSSF, HSLF, XSSF, and XSLF are different * that the codes here. * These codes only exist to assist in transitioning from using ints to enums. * - * @param code + * @param code The unique number for this type. * @deprecated POI 3.15 beta 3 */ @Internal(since="3.15 beta 3") @Deprecated - private HyperlinkType(int code) { + HyperlinkType(int code) { this.code = code; } -- cgit v1.2.3