finally got pruning sorta working
[org.ibex.core.git] / src / edu / stanford / ejalbert / BrowserLauncher.java
index 14fd1ad..afb9453 100644 (file)
@@ -576,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; }
 }