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-01-23 12:06:27 +01:00
|
|
|
index 765e4bc00a0526aab6e263dae7233f63f7f31498..edf937591abf62416bd692e40b7b7a6badbe877d 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-01-23 12:06:27 +01:00
|
|
|
@@ -951,17 +951,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));
|
|
|
|
- }));
|
|
|
|
- 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
|
|
|
- }
|
2022-07-27 23:32:15 +02: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) {
|