Reverted change to use Version object.

This commit is contained in:
nathan 2017-09-14 22:33:56 +02:00
parent 6b990dd090
commit 5d5561bab7
2 changed files with 3 additions and 4 deletions

View File

@ -29,7 +29,7 @@ Maven Info
<dependency>
<groupId>com.dorkbox</groupId>
<artifactId>CabParser</artifactId>
<version>2.12</version>
<version>2.13</version>
</dependency>
</dependencies>
```

View File

@ -26,7 +26,6 @@ import dorkbox.cabparser.structure.CabEnumerator;
import dorkbox.cabparser.structure.CabFileEntry;
import dorkbox.cabparser.structure.CabFolderEntry;
import dorkbox.cabparser.structure.CabHeader;
import dorkbox.util.Version;
public final class CabParser {
private CabInputStream cabInputStream;
@ -89,8 +88,8 @@ public final class CabParser {
* Gets the version number.
*/
public static
Version getVersion() {
return new Version("2.12");
String getVersion() {
return "2.13";
}
public Enumeration<Object> entries() {