diff src/com/five_ten_sg/connectbot/transport/TransportFactory.java @ 13:b39bcf616a6f tn5250

adding tn5250 files
author Carl Byington <carl@five-ten-sg.com>
date Thu, 22 May 2014 18:56:41 -0700
parents f3b3bbd227b8
children 77ac18bc1b2f
line wrap: on
line diff
--- a/src/com/five_ten_sg/connectbot/transport/TransportFactory.java	Thu May 22 18:41:36 2014 -0700
+++ b/src/com/five_ten_sg/connectbot/transport/TransportFactory.java	Thu May 22 18:56:41 2014 -0700
@@ -63,10 +63,10 @@
         }
     }
 
-    public static Uri getUri(String scheme, String input) {
+    public static Uri getUri(String protocol, String input) {
         Log.d("TransportFactory", String.format(
-                  "Attempting to discover URI for scheme=%s on input=%s", scheme,
-                  input));
+                  "Attempting to discover URI for protocol=%s on input=%s",
+                  protocol, input));
         AbsTransport t = getTransport(protocol);
         if (t == null) return null;
         return t.getUri(input);