Remove client-side code using deprecated for removal AccessController

Fixes warnings on build
This commit is contained in:
Jason Penilla 2021-11-26 15:09:58 -08:00
parent 99808779a1
commit 22d5c6386f

View file

@ -96,3 +96,21 @@
enumMap.put(enum_, mapper.apply(enum_));
}
@@ -1057,16 +1087,7 @@
}
public void openUri(URI uri) {
- try {
- Process process = AccessController.doPrivileged(
- (PrivilegedExceptionAction<Process>)(() -> Runtime.getRuntime().exec(this.getOpenUriArguments(uri)))
- );
- process.getInputStream().close();
- process.getErrorStream().close();
- process.getOutputStream().close();
- } catch (IOException | PrivilegedActionException var3) {
- 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
}
public void openFile(File file) {