Cleaning up for 3.0
This commit is contained in:
parent
b87b7bbf8c
commit
1559ae26cd
|
|
@ -40,7 +40,7 @@ I recommend using the Maven artifact from Maven Central using this dependency:
|
|||
<dependency>
|
||||
<groupId>me.legrange</groupId>
|
||||
<artifactId>mikrotik</artifactId>
|
||||
<version>2.2</version>
|
||||
<version>3.0</version>
|
||||
</dependency>
|
||||
```
|
||||
You can also clone or fork the repository, or download the source as a zip or tar.gz from [Releases](https://github.com/GideonLeGrange/mikrotik-java/releases)
|
||||
|
|
|
|||
|
|
@ -33,8 +33,9 @@ public abstract class ApiConnection implements AutoCloseable {
|
|||
|
||||
/**
|
||||
* Create a new API connection to the give device on the supplied port using
|
||||
* the supplied socket factory to create the socket. d
|
||||
* the supplied socket factory to create the socket.
|
||||
*
|
||||
* @param fact SocketFactory to use for TCP socket creation.
|
||||
* @param host The host to which to connect.
|
||||
* @param port The TCP port to use.
|
||||
* @param timeout The connection timeout to use when opening the connection.
|
||||
|
|
@ -128,7 +129,7 @@ public abstract class ApiConnection implements AutoCloseable {
|
|||
*
|
||||
* @param tag The tag of the command to cancel
|
||||
* @throws me.legrange.mikrotik.MikrotikApiException Thrown if there is a
|
||||
* problem canceling the command
|
||||
* problem cancelling the command
|
||||
*/
|
||||
public abstract void cancel(String tag) throws MikrotikApiException;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue