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>
<groupId>com.dorkbox</groupId>
<artifactId>Annotations</artifactId>
<version>2.13</version>
<version>2.14</version>
</dependency>
</dependencies>
```

View File

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