]> git.meshlink.io Git - catta/blobdiff - avahi-ui-sharp/bssh.cs
get rid of a lot of old svn cruft
[catta] / avahi-ui-sharp / bssh.cs
index 003a3a66e13b76b1e89e75f0c7c425022cdf9242..fa3d4d480c5189ec67448229937feb4fca1dc9a2 100644 (file)
@@ -5,8 +5,8 @@ using Avahi.UI;
 
 public class EntryPoint {
     public static void Main () {
-        Application.Init (); 
-               
+        Application.Init ();
+
         ServiceDialog dialog = new ServiceDialog ("Choose SSH Server", null,
                                                   Stock.Cancel, ResponseType.Cancel,
                                                   Stock.Connect, ResponseType.Accept);
@@ -17,11 +17,11 @@ public class EntryPoint {
             Console.WriteLine ("Connecting to {0}:{1}", dialog.Address, dialog.Port);
 
             string user = Environment.UserName;
-            
+
             foreach (byte[] txtBytes in dialog.TxtData) {
                 string txt = System.Text.Encoding.UTF8.GetString (txtBytes);
                 string[] splitTxt = txt.Split(new char[] { '=' }, 2);
-                
+
                 if (splitTxt.Length != 2)
                     continue;