From ab9131c59eeeb35471703232a68b65ebe29fe5ee Mon Sep 17 00:00:00 2001 From: Nick Burch Date: Wed, 28 Jun 2017 23:29:58 +0000 Subject: [PATCH] Used deprecated external method removed, so remove internal method git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1800212 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/poi/xssf/usermodel/XSSFHyperlink.java | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFHyperlink.java b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFHyperlink.java index 401f33cc7f..1065fc60c7 100644 --- a/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFHyperlink.java +++ b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFHyperlink.java @@ -38,17 +38,6 @@ public class XSSFHyperlink implements Hyperlink { final private CTHyperlink _ctHyperlink; //contains a reference to the cell where the hyperlink is anchored, getRef() private String _location; //what the hyperlink refers to - /** - * Create a new XSSFHyperlink. This method is protected to be used only by - * {@link XSSFCreationHelper#createHyperlink(int)}. - * - * @param type - the type of hyperlink to create, see {@link Hyperlink} - * @deprecated POI 3.15 beta 3. Use {@link #XSSFHyperlink(HyperlinkType)} instead. - */ - protected XSSFHyperlink(int type) { - this(HyperlinkType.forInt(type)); - } - /** * Create a new XSSFHyperlink. This method is protected to be used only by * {@link XSSFCreationHelper#createHyperlink(HyperlinkType)}. -- 2.39.5