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
|
2024-04-12 21:14:06 +02:00
|
|
|
index 722734ce612fb790ddc80488a795a85ebcd4a842..72e734af483dc03e1ae947b2ab3b6fa7df38ce62 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
|
2024-04-12 21:14:06 +02:00
|
|
|
@@ -935,16 +935,7 @@ public class Util {
|
2021-11-27 00:11:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public void openUrl(URL url) {
|
|
|
|
- try {
|
2024-04-12 21:14:06 +02:00
|
|
|
- Process process = AccessController.doPrivileged(
|
|
|
|
- (PrivilegedExceptionAction<Process>)(() -> Runtime.getRuntime().exec(this.getOpenUrlArguments(url)))
|
|
|
|
- );
|
2021-11-27 00:11:17 +01:00
|
|
|
- process.getInputStream().close();
|
|
|
|
- process.getErrorStream().close();
|
|
|
|
- process.getOutputStream().close();
|
2022-07-27 23:32:15 +02:00
|
|
|
- } catch (IOException | PrivilegedActionException var3) {
|
|
|
|
- Util.LOGGER.error("Couldn't open url '{}'", url, var3);
|
2021-11-27 00:11:17 +01:00
|
|
|
- }
|
2024-01-18 22:00:40 +01:00
|
|
|
+ throw new IllegalStateException("This method is not useful on dedicated servers."); // Paper - Fix warnings on build by removing client-only code
|
2021-11-27 00:11:17 +01:00
|
|
|
}
|
|
|
|
|
2022-07-27 23:32:15 +02:00
|
|
|
public void openUri(URI uri) {
|