aboutsummaryrefslogtreecommitdiff
path: root/java/jdk14/files/patch-javascript_JSInvoke.java
diff options
context:
space:
mode:
authorGreg Lewis <glewis@FreeBSD.org>2004-12-17 07:02:51 +0000
committerGreg Lewis <glewis@FreeBSD.org>2004-12-17 07:02:51 +0000
commit55f5e15a50c8a7a0434cad4e9d3a2e34aca0c753 (patch)
treec4cc388f7c7996fa61df230fa2beb40b0f0ee494 /java/jdk14/files/patch-javascript_JSInvoke.java
parent8291e657e8e1e9b7c70800d0f43f9e4edbac7e2b (diff)
Notes
Diffstat (limited to 'java/jdk14/files/patch-javascript_JSInvoke.java')
-rw-r--r--java/jdk14/files/patch-javascript_JSInvoke.java26
1 files changed, 0 insertions, 26 deletions
diff --git a/java/jdk14/files/patch-javascript_JSInvoke.java b/java/jdk14/files/patch-javascript_JSInvoke.java
deleted file mode 100644
index fc692b9cb9c1..000000000000
--- a/java/jdk14/files/patch-javascript_JSInvoke.java
+++ /dev/null
@@ -1,26 +0,0 @@
-$FreeBSD$
-
---- ../../deploy/src/plugin/src/share/classes/sun/plugin/javascript/JSInvoke.java 1 Jan 1970 00:00:00 -0000
-+++ ../../deploy/src/plugin/src/share/classes/sun/plugin/javascript/JSInvoke.java 3 Dec 2004 03:56:58 -0000 1.1
-@@ -0,0 +1,21 @@
-+/*
-+ * @(#)JSInvoke.java 1.1 04/06/20
-+ *
-+ * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
-+ * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
-+ */
-+
-+package sun.plugin.javascript.invoke;
-+
-+import java.lang.reflect.Method;
-+import java.lang.reflect.InvocationTargetException;
-+
-+/*
-+ * JavaScript to Java invocation trampoline class.
-+ */
-+class JSInvoke {
-+ private static Object invoke(Method m, Object obj, Object[] params)
-+ throws InvocationTargetException, IllegalAccessException {
-+ return m.invoke(obj, params);
-+ }
-+}