aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/poi/common/usermodel
diff options
context:
space:
mode:
authorDominik Stadler <centic@apache.org>2016-10-21 16:31:37 +0000
committerDominik Stadler <centic@apache.org>2016-10-21 16:31:37 +0000
commit5f8dd87a07881ce0b733a17c73a4cd32d01ee12c (patch)
treeb0670587e8e2fa553a9dca6d64681c80222376b3 /src/java/org/apache/poi/common/usermodel
parent8cdd805d9c2d2671ef024f8a358f392877d80f5f (diff)
downloadpoi-5f8dd87a07881ce0b733a17c73a4cd32d01ee12c.tar.gz
poi-5f8dd87a07881ce0b733a17c73a4cd32d01ee12c.zip
Fix some IDE warnings, JavaDoc, ...
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1766063 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/poi/common/usermodel')
-rw-r--r--src/java/org/apache/poi/common/usermodel/HyperlinkType.java6
1 files changed, 3 insertions, 3 deletions
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;
}