From 9aa06f3380ee2df7dbc3a2f6b8da6c91b47eb139 Mon Sep 17 00:00:00 2001 From: Gideon le Grange Date: Sun, 29 Mar 2015 13:06:34 +0200 Subject: [PATCH] Working on fix for issue #16 --- src/main/java/me/legrange/mikrotik/ApiConnection.java | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/main/java/me/legrange/mikrotik/ApiConnection.java b/src/main/java/me/legrange/mikrotik/ApiConnection.java index 5fb37ad..1a11807 100644 --- a/src/main/java/me/legrange/mikrotik/ApiConnection.java +++ b/src/main/java/me/legrange/mikrotik/ApiConnection.java @@ -131,11 +131,4 @@ public abstract class ApiConnection { * @throws me.legrange.mikrotik.MikrotikApiException Thrown if there is a problem canceling the command */ public abstract void cancel(String tag) throws MikrotikApiException; - /** default TCP port used by Mikrotik API */ - private static final int DEFAULT_PORT = 8728; - /** default TCP TLS port used by Mikrotik API */ - private static final int DEFAULT_TLS_PORT = 8729; - /** default connection timeout to use when opening the connection */ - private static final int DEFAULT_CONNECTION_TIMEOUT = 60000; - } \ No newline at end of file