mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-28 23:38:25 +01:00
Remove client-side code using deprecated for removal AccessController
Fixes warnings on build
This commit is contained in:
parent
99808779a1
commit
22d5c6386f
1 changed files with 18 additions and 0 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue