2021-11-27 00:11:17 +01:00
|
|
|
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
|
2022-06-08 13:44:30 +02:00
|
|
|
index e8f5f87962cd3dbd383096fc4df9c3f0d5399211..c540b695282e2cca97cc4e3320d641befa19c1c6 100644
|
2021-11-27 00:11:17 +01:00
|
|
|
--- a/src/main/java/net/minecraft/Util.java
|
|
|
|
+++ b/src/main/java/net/minecraft/Util.java
|
2022-06-08 13:44:30 +02:00
|
|
|
@@ -27,7 +27,6 @@ import java.net.URL;
|
2021-11-27 00:11:17 +01:00
|
|
|
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;
|
2022-06-08 13:44:30 +02:00
|
|
|
@@ -883,21 +882,7 @@ public class Util {
|
2021-11-27 00:11:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
}
|
|
|
|
|