[Pkg-mono-svn-commits] rev 323 - mono-nethostmanager/src

Pablo Fischer pabl0-guest@quantz.debian.org
Sun, 22 Feb 2004 19:52:13 +0100


Author: pabl0-guest
Date: 2004-02-22 19:52:13 +0100 (Sun, 22 Feb 2004)
New Revision: 323

Modified:
   mono-nethostmanager/src/Manager.cs
   mono-nethostmanager/src/VirtualSchema.cs
Log:
Updated:
* VirtualSchema: print a blank new line after all the hosts are printed
* Manager: Removed some debug warnings


Modified: mono-nethostmanager/src/Manager.cs
===================================================================
--- mono-nethostmanager/src/Manager.cs	2004-02-22 18:44:10 UTC (rev 322)
+++ mono-nethostmanager/src/Manager.cs	2004-02-22 18:52:13 UTC (rev 323)
@@ -177,9 +177,6 @@
   ///The main
   ///</summary>
   public static void Main(string[] args) {
-    Console.Write("hola");
-    Console.Write("hola");
-
     try {
       action = args[0];
     }catch(System.IndexOutOfRangeException ex) {
@@ -248,7 +245,6 @@
       }
       break;
     case "print":      
-      Console.WriteLine("aqui ando..");
       LoadConfigInfo(); 
       hosts.PrintHosts();
       break;

Modified: mono-nethostmanager/src/VirtualSchema.cs
===================================================================
--- mono-nethostmanager/src/VirtualSchema.cs	2004-02-22 18:44:10 UTC (rev 322)
+++ mono-nethostmanager/src/VirtualSchema.cs	2004-02-22 18:52:13 UTC (rev 323)
@@ -44,6 +44,7 @@
       else {
 	Console.Write("{0}:{1},", ((Host)hostArray[position]).alias, ((Host)hostArray[position]).path);
       }			  
+    Console.WriteLine("");
   }
 }