2003/02/12 06:44:09
[org.ibex.core.git] / src / org / xwt / plat / POSIX.java
index 1733572..0855306 100644 (file)
@@ -39,17 +39,12 @@ public class POSIX extends GCJ {
 
         StringTokenizer st = new StringTokenizer(browserString, " ");
         String[] cmd = new String[st.countTokens()];
-        for(int i=0; st.hasMoreTokens(); i++) {
-            cmd[i] = st.nextToken();
-            System.out.println(i + ":" + cmd[i]);
-        }
+        for(int i=0; st.hasMoreTokens(); i++) cmd[i] = st.nextToken();
 
         spawnChildProcess(cmd);
     }
 
     public POSIX() { }
-    public void init() { }
-
 }