bug 59804: @Removal(version="3.15") version should be parsed to make sure the version number is recognizable

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1784230 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Javen O'Neal 2017-02-24 04:59:29 +00:00
parent 717f279ed8
commit c04e2a314a
1 changed files with 2 additions and 0 deletions

View File

@ -58,4 +58,6 @@ public @interface Removal {
* Example: "3.15"
*/
String version() default "";
// TODO: Verify that the version syntax is valid by parsing with a version-aware parser like
// org.apache.maven.artifact.versioning.DefaultArtifactVersion
}