]> source.dussan.org Git - poi.git/commitdiff
bug 59907: add @Removal annotations to AnchorType static aliases in ClientAnchor
authorJaven O'Neal <onealj@apache.org>
Wed, 14 Sep 2016 03:06:51 +0000 (03:06 +0000)
committerJaven O'Neal <onealj@apache.org>
Wed, 14 Sep 2016 03:06:51 +0000 (03:06 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1760620 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/ss/usermodel/ClientAnchor.java

index 705c53bba1149a95a79d5a604e88cf439ea4114b..702970c69e7b4fc06191240f9a8dda81fb86198c 100644 (file)
@@ -36,6 +36,7 @@ public interface ClientAnchor {
      * </p>
      * @deprecated since POI 3.14beta1 (circa 2015-11-24). Use {@link AnchorType#MOVE_AND_RESIZE} instead.
      */
+    @Removal(version="3.17")
     public static final AnchorType MOVE_AND_RESIZE = AnchorType.MOVE_AND_RESIZE;
     
     /**
@@ -51,6 +52,7 @@ public interface ClientAnchor {
      * </p>
      * @deprecated since POI 3.14beta1 (circa 2015-11-24). Use {@link AnchorType#MOVE_DONT_RESIZE} instead.
      */
+    @Removal(version="3.17")
     public static final AnchorType MOVE_DONT_RESIZE = AnchorType.MOVE_DONT_RESIZE;
 
     /**
@@ -67,6 +69,7 @@ public interface ClientAnchor {
      * </p>
      * @deprecated since POI 3.14beta1 (circa 2015-11-24). Use {@link AnchorType#DONT_MOVE_AND_RESIZE} instead.
      */
+    @Removal(version="3.17")
     public static final AnchorType DONT_MOVE_AND_RESIZE = AnchorType.DONT_MOVE_AND_RESIZE;
     
     /**