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
This commit is contained in:
Nick Burch 2017-06-28 23:29:58 +00:00
parent 91f611256f
commit ab9131c59e
1 changed files with 0 additions and 11 deletions

View 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() final private CTHyperlink _ctHyperlink; //contains a reference to the cell where the hyperlink is anchored, getRef()
private String _location; //what the hyperlink refers to 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 * Create a new XSSFHyperlink. This method is protected to be used only by
* {@link XSSFCreationHelper#createHyperlink(HyperlinkType)}. * {@link XSSFCreationHelper#createHyperlink(HyperlinkType)}.