Skip to content

Commit 76bcf91

Browse files
committed
fix: lint
1 parent 11b2ec6 commit 76bcf91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

android/src/main/java/ee/forgr/capacitor/plugin/downloader/CapacitorDownloaderPlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public void download(PluginCall call) {
7979

8080
JSObject headers = call.getObject("headers");
8181
if (headers != null) {
82-
for (Iterator<String> it = headers.keys(); it.hasNext();) {
82+
for (Iterator<String> it = headers.keys(); it.hasNext(); ) {
8383
String key = it.next();
8484
request.addRequestHeader(key, headers.getString(key));
8585
}

0 commit comments

Comments
 (0)