summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2023-10-27 07:22:29 +0200
committerFlorian Schmaus <flow@gentoo.org>2023-10-27 09:10:52 +0200
commit2ddc8a8013b6e7e30028a19b4872b6f11279eeeb (patch)
tree09f240b44c85bce34f3b2ae6af59e9651e099557 /dev-java
parentsys-apps/fwupd: remove unused patches (diff)
downloadgentoo-2ddc8a8013b6e7e30028a19b4872b6f11279eeeb.tar.gz
gentoo-2ddc8a8013b6e7e30028a19b4872b6f11279eeeb.tar.bz2
gentoo-2ddc8a8013b6e7e30028a19b4872b6f11279eeeb.zip
dev-java/openjdk: remove unused patch
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/33532 Signed-off-by: Florian Schmaus <flow@gentoo.org>
Diffstat (limited to 'dev-java')
-rw-r--r--dev-java/openjdk/files/openjdk-17.0.6-multihead-fix.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/dev-java/openjdk/files/openjdk-17.0.6-multihead-fix.patch b/dev-java/openjdk/files/openjdk-17.0.6-multihead-fix.patch
deleted file mode 100644
index 46f503dd8e0b..000000000000
--- a/dev-java/openjdk/files/openjdk-17.0.6-multihead-fix.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-From cfc9a881afd300bd7c1ce784287d1669308e89fc Mon Sep 17 00:00:00 2001
-From: Sergey Bylokhov <serb@openjdk.org>
-Date: Sat, 2 Jul 2022 00:25:20 +0000
-Subject: [PATCH] 8288854: getLocalGraphicsEnvironment() on for multi-screen
- setups throws exception NPE
-
-Reviewed-by: azvegint, aivanov
----
- .../unix/classes/sun/awt/X11GraphicsEnvironment.java | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/java.desktop/unix/classes/sun/awt/X11GraphicsEnvironment.java b/src/java.desktop/unix/classes/sun/awt/X11GraphicsEnvironment.java
-index 5c9d2a1b695..93f5eaf6656 100644
---- a/src/java.desktop/unix/classes/sun/awt/X11GraphicsEnvironment.java
-+++ b/src/java.desktop/unix/classes/sun/awt/X11GraphicsEnvironment.java
-@@ -236,7 +236,7 @@ private synchronized void initDevices() {
- throw new AWTError("no screen devices");
- }
- int index = getDefaultScreenNum();
-- mainScreen = 0 < index && index < screens.length ? index : 0;
-+ mainScreen = 0 < index && index < numScreens ? index : 0;
-
- for (int id = 0; id < numScreens; ++id) {
- devices.put(id, old.containsKey(id) ? old.remove(id) :