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

Commit ce443aa

Browse files
committed
Convert serverimpl to ext
1 parent 3a22934 commit ce443aa

File tree

2 files changed

+253
-256
lines changed

2 files changed

+253
-256
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* @see HttpHandler
1717
* @see SimpleHttpHandler
1818
* @since 02.00.00
19-
* @version 02.00.00
19+
* @version 03.04.00
2020
* @author Ktt Development
2121
*/
2222
@SuppressWarnings("SpellCheckingInspection")
@@ -25,7 +25,7 @@ public abstract class SimpleHttpServer {
2525
/**
2626
* Create an empty {@link SimpleHttpServer}. Applications don't use this method.
2727
*
28-
* @see SimpleHttpServerImpl#createSimpleHttpServer(Integer, Integer)
28+
* @see SimpleHttpServerImpl#create(Integer, Integer)
2929
* @since 02.00.00
3030
* @author Ktt Development
3131
*/
@@ -43,7 +43,7 @@ public abstract class SimpleHttpServer {
4343
* @author Ktt Development
4444
*/
4545
public static SimpleHttpServer create() throws IOException {
46-
return SimpleHttpServerImpl.createSimpleHttpServer(null,null);
46+
return SimpleHttpServerImpl.create(null,null);
4747
}
4848

4949
/**
@@ -60,7 +60,7 @@ public static SimpleHttpServer create() throws IOException {
6060
* @author Ktt Development
6161
*/
6262
public static SimpleHttpServer create(final int port) throws IOException {
63-
return SimpleHttpServerImpl.createSimpleHttpServer(port,null);
63+
return SimpleHttpServerImpl.create(port,null);
6464
}
6565

6666
/**
@@ -78,7 +78,7 @@ public static SimpleHttpServer create(final int port) throws IOException {
7878
* @author Ktt Development
7979
*/
8080
public static SimpleHttpServer create(final int port, final int backlog) throws IOException {
81-
return SimpleHttpServerImpl.createSimpleHttpServer(port,backlog);
81+
return SimpleHttpServerImpl.create(port,backlog);
8282
}
8383

8484
//

0 commit comments

Comments
 (0)