Skip to content
This repository was archived by the owner on Jul 31, 2022. It is now read-only.

Commit e65961b

Browse files
committed
Update SimpleHttpsServerImpl.java
1 parent c6fa1b0 commit e65961b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/main/java/com/kttdevelopment/simplehttpserver/SimpleHttpsServerImpl.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,18 +82,21 @@ public synchronized final InetSocketAddress bind(final int port) throws IOExcept
8282
return addr;
8383
}
8484

85+
@SuppressWarnings("SpellCheckingInspection")
8586
@Override
8687
public synchronized final InetSocketAddress bind(final int port, final int backlog) throws IOException{
8788
final InetSocketAddress addr = new InetSocketAddress(port);
8889
server.bind(addr, backlog);
8990
return addr;
9091
}
9192

93+
@SuppressWarnings("SpellCheckingInspection")
9294
@Override
9395
public synchronized final void bind(final InetSocketAddress addr) throws IOException{
9496
server.bind(addr,0);
9597
}
9698

99+
@SuppressWarnings("SpellCheckingInspection")
97100
@Override
98101
public synchronized final void bind(final InetSocketAddress addr, final int backlog) throws IOException{
99102
server.bind(addr,backlog);

0 commit comments

Comments
 (0)