Fix formatting.

This commit is contained in:
Kavin 2023-08-04 17:35:04 +01:00
parent 70b4734f3d
commit b7b9c918a8
No known key found for this signature in database
GPG key ID: 6E4598CA5C92C41F

View file

@ -41,7 +41,10 @@ public class ReqwestUtils {
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);
} catch (IOException e) {
throw new RuntimeException(e);
@ -53,6 +56,6 @@ public class ReqwestUtils {
public static native void init(String proxy);
public static native CompletableFuture<Response> fetch(String url, String method, byte[] body,
Map<String, String> headers);
Map<String, String> headers);
}