refactor: remove unnecessary semicolon

This commit is contained in:
エリス 2024-12-29 03:01:31 +09:00
parent 02ddf2ef62
commit b6ac771142
No known key found for this signature in database
GPG Key ID: 2E5FF17FB26AF7F2
3 changed files with 3 additions and 3 deletions

View File

@ -30,4 +30,4 @@ public interface ICordovaCookieManager {
public void clearCookies();
public void flush();
};
}

View File

@ -65,4 +65,4 @@ class SystemCookieManager implements ICordovaCookieManager {
public void flush() {
cookieManager.flush();
}
};
}

View File

@ -88,7 +88,7 @@ public class SystemWebViewClient extends WebViewClient {
if (response != null) {
return response;
}
};
}
}
}