]> source.dussan.org Git - poi.git/commitdiff
changed retention policy in @Internal to RUNTIME, also added a string parameter for...
authorYegor Kozlov <yegor@apache.org>
Sat, 19 Dec 2009 11:25:39 +0000 (11:25 +0000)
committerYegor Kozlov <yegor@apache.org>
Sat, 19 Dec 2009 11:25:39 +0000 (11:25 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@892460 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/util/Internal.java

index 6ca152b53316cb8ef406721093c8f5dcfc57696f..2177e09dd2973c256fc7f9acfb1d8f43a0480195 100644 (file)
@@ -32,7 +32,7 @@ import java.lang.annotation.Documented;
  * @since POI-3.6
  */
 @Documented
-@Retention(RetentionPolicy.SOURCE)
+@Retention(RetentionPolicy.RUNTIME)
 public @interface Internal {
-
+    String value() default "";    
 }