]> source.dussan.org Git - poi.git/commitdiff
Used deprecated external method removed, so remove internal method
authorNick Burch <nick@apache.org>
Wed, 28 Jun 2017 23:29:58 +0000 (23:29 +0000)
committerNick Burch <nick@apache.org>
Wed, 28 Jun 2017 23:29:58 +0000 (23:29 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1800212 13f79535-47bb-0310-9956-ffa450edef68

src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFHyperlink.java

index 401f33cc7f3c41050be3321994ed0012ddcbe787..1065fc60c78f1aec01de57dd3e924e692ad9bd1e 100644 (file)
@@ -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)}.