aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0809-Remove-client-side-code-using-deprecated-for-removal.patch
blob: 654a699a889335180742bd93330df966879d39d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Jason Penilla <11360596+jpenilla@users.noreply.github.com>
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 652c84fe3a4c3004fd9ef8123380836344608359..f6561599391583ba7d669af42b5716cda0df2d68 100644
--- a/src/main/java/net/minecraft/Util.java
+++ b/src/main/java/net/minecraft/Util.java
@@ -23,7 +23,6 @@ import java.net.URL;
 import java.nio.file.Files;
 import java.nio.file.Path;
 import java.nio.file.spi.FileSystemProvider;
-import java.security.AccessController;
 import java.security.PrivilegedActionException;
 import java.security.PrivilegedExceptionAction;
 import java.time.Duration;
@@ -780,21 +779,7 @@ public class Util {
         }
 
         public void openUrl(URL url) {
-            try {
-                Process process = AccessController.doPrivileged((PrivilegedExceptionAction<Process>)(() -> {
-                    return Runtime.getRuntime().exec(this.getOpenUrlArguments(url));
-                }));
-
-                for(String string : IOUtils.readLines(process.getErrorStream())) {
-                    Util.LOGGER.error(string);
-                }
-
-                process.getInputStream().close();
-                process.getErrorStream().close();
-                process.getOutputStream().close();
-            } catch (IOException | PrivilegedActionException var5) {
-                Util.LOGGER.error("Couldn't open url '{}'", url, var5);
-            }
+            throw new IllegalStateException("This method is not useful on dedicated servers."); // Paper
 
         }