mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-03 23:07:40 +01:00
Remove client-side code using deprecated for removal AccessController
Fixes warnings on build
This commit is contained in:
parent
99808779a1
commit
22d5c6386f
@ -96,3 +96,21 @@
|
|||||||
enumMap.put(enum_, mapper.apply(enum_));
|
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) {
|
||||||
|
Loading…
Reference in New Issue
Block a user