summaryrefslogtreecommitdiff
path: root/lang/openjdk7/patches
diff options
context:
space:
mode:
authortnn <tnn@pkgsrc.org>2015-02-23 13:34:56 +0000
committertnn <tnn@pkgsrc.org>2015-02-23 13:34:56 +0000
commitf5def9406b7929b3c9a0f4504e810d85e31b546a (patch)
treeccba7ecad9dcbe76b792d2142b6a286c54f24ee5 /lang/openjdk7/patches
parentc1b8bdb0187c800643453885a2b5fcea1bf6240e (diff)
downloadpkgsrc-f5def9406b7929b3c9a0f4504e810d85e31b546a.tar.gz
Remove icedtea-web stuff from the base runtime.
It seems to not be needed by www/icedtea-web any longer. Bump PKGREVISION.
Diffstat (limited to 'lang/openjdk7/patches')
-rw-r--r--lang/openjdk7/patches/patch-as68
-rw-r--r--lang/openjdk7/patches/patch-at42
2 files changed, 0 insertions, 110 deletions
diff --git a/lang/openjdk7/patches/patch-as b/lang/openjdk7/patches/patch-as
deleted file mode 100644
index e8cefdd6d3a..00000000000
--- a/lang/openjdk7/patches/patch-as
+++ /dev/null
@@ -1,68 +0,0 @@
-$NetBSD: patch-as,v 1.2 2013/06/02 06:12:28 ryoon Exp $
-
---- jdk/src/share/classes/sun/applet/AppletViewerPanel.java.orig 2012-08-10 17:28:21.000000000 +0000
-+++ jdk/src/share/classes/sun/applet/AppletViewerPanel.java
-@@ -42,25 +42,25 @@ import sun.tools.jar.*;
- *
- * @author Arthur van Hoff
- */
--class AppletViewerPanel extends AppletPanel {
-+public class AppletViewerPanel extends AppletPanel {
-
- /* Are we debugging? */
-- static boolean debug = false;
-+ protected static boolean debug = false;
-
- /**
- * The document url.
- */
-- URL documentURL;
-+ protected URL documentURL;
-
- /**
- * The base url.
- */
-- URL baseURL;
-+ protected URL baseURL;
-
- /**
- * The attributes of the applet.
- */
-- Hashtable atts;
-+ protected Hashtable<String,String> atts;
-
- /*
- * JDK 1.1 serialVersionUID
-@@ -70,7 +70,7 @@ class AppletViewerPanel extends AppletPa
- /**
- * Construct an applet viewer and start the applet.
- */
-- AppletViewerPanel(URL documentURL, Hashtable atts) {
-+ protected AppletViewerPanel(URL documentURL, Hashtable<String,String> atts) {
- this.documentURL = documentURL;
- this.atts = atts;
-
-@@ -106,7 +106,7 @@ class AppletViewerPanel extends AppletPa
- * Get an applet parameter.
- */
- public String getParameter(String name) {
-- return (String)atts.get(name.toLowerCase());
-+ return atts.get(name.toLowerCase());
- }
-
- /**
-@@ -202,12 +202,12 @@ class AppletViewerPanel extends AppletPa
- return (AppletContext)getParent();
- }
-
-- static void debug(String s) {
-+ protected static void debug(String s) {
- if(debug)
- System.err.println("AppletViewerPanel:::" + s);
- }
-
-- static void debug(String s, Throwable t) {
-+ protected static void debug(String s, Throwable t) {
- if(debug) {
- t.printStackTrace();
- debug(s);
diff --git a/lang/openjdk7/patches/patch-at b/lang/openjdk7/patches/patch-at
deleted file mode 100644
index f57a039560e..00000000000
--- a/lang/openjdk7/patches/patch-at
+++ /dev/null
@@ -1,42 +0,0 @@
-$NetBSD: patch-at,v 1.2 2013/06/02 06:12:28 ryoon Exp $
-
---- jdk/src/share/classes/sun/applet/AppletPanel.java.orig 2013-05-29 03:57:58.000000000 +0000
-+++ jdk/src/share/classes/sun/applet/AppletPanel.java
-@@ -68,7 +68,7 @@ abstract class AppletPanel extends Panel
- /**
- * The applet (if loaded).
- */
-- Applet applet;
-+ protected Applet applet;
-
- /**
- * Applet will allow initialization. Should be
-@@ -162,7 +162,8 @@ abstract class AppletPanel extends Panel
- * Creates a thread to run the applet. This method is called
- * each time an applet is loaded and reloaded.
- */
-- synchronized void createAppletThread() {
-+ //Overridden by NetxPanel.
-+ protected synchronized void createAppletThread() {
- // Create a thread group for the applet, and start a new
- // thread to load the applet.
- String nm = "applet-" + getCode();
-@@ -306,7 +307,7 @@ abstract class AppletPanel extends Panel
- /**
- * Get an event from the queue.
- */
-- synchronized AppletEvent getNextEvent() throws InterruptedException {
-+ protected synchronized AppletEvent getNextEvent() throws InterruptedException {
- while (queue == null || queue.isEmpty()) {
- wait();
- }
-@@ -692,7 +693,8 @@ abstract class AppletPanel extends Panel
- * applet event processing so that it can be gracefully interrupted from
- * things like HotJava.
- */
-- private void runLoader() {
-+ //Overridden by NetxPanel.
-+ protected void runLoader() {
- if (status != APPLET_DISPOSE) {
- showAppletStatus("notdisposed");
- return;