From 6a82e04b5098c491af5d04742b678ce3844806dd Mon Sep 17 00:00:00 2001
From: Jeffrey Phillips Freeman <the@jeffreyfreeman.me>
Date: Mon, 6 Sep 2021 16:54:05 -0400
Subject: [PATCH] Fix: Removed unused url argument.

---
 lib/apex/igate_tcp.rb | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/lib/apex/igate_tcp.rb b/lib/apex/igate_tcp.rb
index d2a9cd1..2ee79cd 100644
--- a/lib/apex/igate_tcp.rb
+++ b/lib/apex/igate_tcp.rb
@@ -5,13 +5,8 @@ module Apex
         DEFAULT_APRSIS_FILTER_PORT = 14580
 
         protected
-        def initialize(user, password='-1', input_url=None)
+        def initialize(user, password='-1')
             @user = user
-            if input_url
-                @url = input_url
-            else
-                @url = DEFAULT_APRSIS_URL
-            end
             @auth = ['user', user, 'pass', password, 'vers', 'APEX-APRS Ruby Module'].join(' ')
             @aprsis_sock = nil
             @data_buffer = ''
-- 
GitLab