Reverted change to use Version object.

This commit is contained in:
nathan 2017-09-14 23:35:57 +02:00
parent b5c5ea3c9d
commit 2ef63599bf
2 changed files with 3 additions and 5 deletions

View File

@ -12,7 +12,7 @@ Drop-in replacement for [minlog](https://github.com/EsotericSoftware/minlog).
<dependency> <dependency>
<groupId>com.dorkbox</groupId> <groupId>com.dorkbox</groupId>
<artifactId>MinLog-SLF4J</artifactId> <artifactId>MinLog-SLF4J</artifactId>
<version>1.11</version> <version>1.12</version>
</dependency> </dependency>
</dependencies> </dependencies>
``` ```

View File

@ -19,8 +19,6 @@
*/ */
package com.esotericsoftware.minlog; package com.esotericsoftware.minlog;
import dorkbox.util.Version;
/** /**
* A low overhead, lightweight logging system. * A low overhead, lightweight logging system.
* @author Nathan Sweet <misc@n4te.com> * @author Nathan Sweet <misc@n4te.com>
@ -61,8 +59,8 @@ public class Log {
* Gets the version number. * Gets the version number.
*/ */
public static public static
Version getVersion() { String getVersion() {
return new Version("1.11"); return "1.12";
} }
/** /**