Reverted change to use Version (now uses string again).

This commit is contained in:
nathan 2017-09-15 00:49:59 +02:00
parent a78db100aa
commit c92c98857b
2 changed files with 3 additions and 4 deletions

View File

@ -144,7 +144,7 @@ Maven Info
<dependency> <dependency>
<groupId>com.dorkbox</groupId> <groupId>com.dorkbox</groupId>
<artifactId>MessageBus</artifactId> <artifactId>MessageBus</artifactId>
<version>1.18</version> <version>1.19</version>
</dependency> </dependency>
</dependencies> </dependencies>
``` ```

View File

@ -26,7 +26,6 @@ import dorkbox.messagebus.synchrony.AsyncABQ_noGc;
import dorkbox.messagebus.synchrony.AsyncDisruptor; import dorkbox.messagebus.synchrony.AsyncDisruptor;
import dorkbox.messagebus.synchrony.Sync; import dorkbox.messagebus.synchrony.Sync;
import dorkbox.messagebus.synchrony.Synchrony; import dorkbox.messagebus.synchrony.Synchrony;
import dorkbox.util.Version;
/** /**
* The base class for all message bus implementations with support for asynchronous message dispatch. * The base class for all message bus implementations with support for asynchronous message dispatch.
@ -108,8 +107,8 @@ class MessageBus implements IMessageBus {
* Gets the version number. * Gets the version number.
*/ */
public static public static
Version getVersion() { String getVersion() {
return new Version("1.18"); return "1.19";
} }
private final ErrorHandler errorHandler; private final ErrorHandler errorHandler;