resolve darcs stupidity
[org.ibex.core.git] / src / edu / stanford / ejalbert / BrowserLauncher.java
index 0e2b856..afb9453 100644 (file)
@@ -1,7 +1,6 @@
 package edu.stanford.ejalbert;
 
 import java.io.File;
-import java.io.FileNotFoundException;
 import java.io.IOException;
 import java.lang.reflect.Constructor;
 import java.lang.reflect.Field;
@@ -577,8 +576,14 @@ public class BrowserLauncher {
         * Methods required for Mac OS X.  The presence of native methods does not cause
         * any problems on other platforms.
         */
+    /*
        private native static int ICStart(int[] instance, int signature);
        private native static int ICStop(int[] instance);
        private native static int ICLaunchURL(int instance, byte[] hint, byte[] data, int len,
                                                                                        int[] selectionStart, int[] selectionEnd);
+    */
+    private static int ICStart(int[] instance, int signature) { return 0; }
+    private static int ICStop(int[] instance) { return 0; }
+    private static int ICLaunchURL(int instance, byte[] hint, byte[] data, int len,
+        int[] selectionStart, int[] selectionEnd) { return 0; }
 }