aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0634-Remove-client-side-code-using-deprecated-for-removal.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/server/0634-Remove-client-side-code-using-deprecated-for-removal.patch')
-rw-r--r--patches/server/0634-Remove-client-side-code-using-deprecated-for-removal.patch30
1 files changed, 30 insertions, 0 deletions
diff --git a/patches/server/0634-Remove-client-side-code-using-deprecated-for-removal.patch b/patches/server/0634-Remove-client-side-code-using-deprecated-for-removal.patch
new file mode 100644
index 0000000000..4aed4f1f3a
--- /dev/null
+++ b/patches/server/0634-Remove-client-side-code-using-deprecated-for-removal.patch
@@ -0,0 +1,30 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Jason Penilla <[email protected]>
+Date: Fri, 26 Nov 2021 15:09:58 -0800
+Subject: [PATCH] Remove client-side code using deprecated for removal
+ AccessController
+
+Fixes warnings on build
+
+diff --git a/src/main/java/net/minecraft/Util.java b/src/main/java/net/minecraft/Util.java
+index 4cf88f6d815d60cfbf8e4ecf9d96d0cfadd0620b..42d7ecfab6f72517904451d9df3f0404b176fdb2 100644
+--- a/src/main/java/net/minecraft/Util.java
++++ b/src/main/java/net/minecraft/Util.java
+@@ -1002,16 +1002,7 @@ public class Util {
+ }
+
+ public void openUri(URI uri) {
+- try {
+- Process process = AccessController.doPrivileged(
+- (PrivilegedExceptionAction<Process>)(() -> Runtime.getRuntime().exec(this.getOpenUriArguments(uri)))
+- );
+- process.getInputStream().close();
+- process.getErrorStream().close();
+- process.getOutputStream().close();
+- } catch (IOException | PrivilegedActionException var3) {
+- Util.LOGGER.error("Couldn't open location '{}'", uri, var3);
+- }
++ throw new IllegalStateException("This method is not useful on dedicated servers."); // Paper - Fix warnings on build by removing client-only code
+ }
+
+ public void openFile(File file) {