remove Deprecated flags that don't work in Java 8

This commit is contained in:
PJ Fanning 2025-12-03 01:51:13 +01:00
parent 694bfb36cc
commit b5b61eab6e
2 changed files with 2 additions and 2 deletions

View File

@ -249,7 +249,7 @@ public class ZipSecureFile extends ZipFile {
* @return the path name of the ZIP file
* @deprecated there is no need for this method - it will be removed in a future version of POI (deprecated since POI 5.3.0)
*/
@Deprecated(since = "5.3.0", forRemoval = true)
@Deprecated // since 5.3.0
@Removal(version = "7.0.0")
public String getName() {
return fileName;

View File

@ -97,7 +97,7 @@ public class ExternalLinksTable extends POIXMLDocumentPart {
*/
@Internal
@Removal(version = "6.0.0")
@Deprecated(forRemoval = true)
@Deprecated
public CTExternalLink getCTExternalLink(){
return link;
}