PaperMC/patches/unapplied/server/0621-Remove-client-side-code-using-deprecated-for-removal.patch

31 lines
1.4 KiB
Diff
Raw Normal View History

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-12-03 17:58:41 +01:00
index dbf79a018260a006bf5d16608b35bcbea9adb963..e4048d8f43befe5134222207cdb88f640a875deb 100644
--- a/src/main/java/net/minecraft/Util.java
+++ b/src/main/java/net/minecraft/Util.java
2024-10-23 22:10:14 +02:00
@@ -1082,16 +1082,7 @@ public class Util {
}
2024-06-14 02:08:12 +02:00
public void openUri(URI uri) {
- try {
- Process process = AccessController.doPrivileged(
2024-06-14 02:08:12 +02:00
- (PrivilegedExceptionAction<Process>)(() -> Runtime.getRuntime().exec(this.getOpenUriArguments(uri)))
- );
- process.getInputStream().close();
- process.getErrorStream().close();
- process.getOutputStream().close();
2022-07-27 23:32:15 +02:00
- } catch (IOException | PrivilegedActionException var3) {
2024-06-14 02:08:12 +02:00
- 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
}
2024-06-14 02:08:12 +02:00
public void openFile(File file) {