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>
<groupId>com.dorkbox</groupId>
<artifactId>MessageBus</artifactId>
<version>1.18</version>
<version>1.19</version>
</dependency>
</dependencies>
```

View File

@ -26,7 +26,6 @@ import dorkbox.messagebus.synchrony.AsyncABQ_noGc;
import dorkbox.messagebus.synchrony.AsyncDisruptor;
import dorkbox.messagebus.synchrony.Sync;
import dorkbox.messagebus.synchrony.Synchrony;
import dorkbox.util.Version;
/**
* 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.
*/
public static
Version getVersion() {
return new Version("1.18");
String getVersion() {
return "1.19";
}
private final ErrorHandler errorHandler;