Reverted change to use Version object.

This commit is contained in:
nathan 2017-09-14 22:30:29 +02:00
parent dd895889b7
commit 146040ebfa
2 changed files with 3 additions and 5 deletions

View File

@ -53,7 +53,7 @@ Maven Info
<dependency> <dependency>
<groupId>com.dorkbox</groupId> <groupId>com.dorkbox</groupId>
<artifactId>Annotations</artifactId> <artifactId>Annotations</artifactId>
<version>2.13</version> <version>2.14</version>
</dependency> </dependency>
</dependencies> </dependencies>
``` ```

View File

@ -49,8 +49,6 @@ import java.util.Set;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
import dorkbox.util.Version;
/** /**
* {@code AnnotationDetector} reads Java Class Files ("*.class") and reports the * {@code AnnotationDetector} reads Java Class Files ("*.class") and reports the
* found annotations via a simple, developer friendly API. * found annotations via a simple, developer friendly API.
@ -214,8 +212,8 @@ class AnnotationDetector implements Builder, Cursor {
* Gets the version number. * Gets the version number.
*/ */
public static public static
Version getVersion() { String getVersion() {
return new Version("2.13"); return "2.14";
} }
/** /**