mirror of
https://github.com/TeamPiped/reqwest4j.git
synced 2024-08-14 23:54:39 +00:00
Fix formatting.
This commit is contained in:
parent
70b4734f3d
commit
b7b9c918a8
1 changed files with 5 additions and 2 deletions
|
@ -41,7 +41,10 @@ public class ReqwestUtils {
|
||||||
|
|
||||||
final var cl = ReqwestUtils.class.getClassLoader();
|
final var cl = ReqwestUtils.class.getClassLoader();
|
||||||
|
|
||||||
try (var stream = cl.getResourceAsStream("META-INF/natives/" + native_folder + "/" + arch + "/libreqwest" + extension); var fileOutputStream = new FileOutputStream(nativeFile)) {
|
try (
|
||||||
|
var stream = cl.getResourceAsStream("META-INF/natives/" + native_folder + "/" + arch + "/libreqwest" + extension);
|
||||||
|
var fileOutputStream = new FileOutputStream(nativeFile)
|
||||||
|
) {
|
||||||
stream.transferTo(fileOutputStream);
|
stream.transferTo(fileOutputStream);
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
throw new RuntimeException(e);
|
throw new RuntimeException(e);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue