8278263: Remove redundant synchronized from URLStreamHandler.openConnection methods

Reviewed-by: dfuchs
This commit is contained in:
Andrey Turbanov 2022-01-31 12:11:03 +00:00
parent 251351f494
commit c6ed2046b4
3 changed files with 9 additions and 31 deletions

View file

@ -95,7 +95,7 @@ public class Handler extends URLStreamHandler {
// }
*/
public synchronized URLConnection openConnection(URL u) {
public URLConnection openConnection(URL u) {
return new MailToURLConnection(u);
}