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

Commit 10ecfef

Browse files
authored
Change SimpleHttpExchangeImpl so it extends SimpleHttpExchange (DevOnly)
Change SimpleHttpExchangeImpl so it extends SimpleHttpExchange
2 parents 3a22934 + 832da19 commit 10ecfef

File tree

2 files changed

+356
-364
lines changed

2 files changed

+356
-364
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
*
4747
* @see HttpExchange
4848
* @since 02.00.00
49-
* @version 02.00.00
49+
* @version 03.04.00
5050
* @author Ktt Development
5151
*/
5252
@SuppressWarnings("SpellCheckingInspection")
@@ -55,7 +55,7 @@ public abstract class SimpleHttpExchange {
5555
/**
5656
* Create an empty {@link SimpleHttpExchange}. Applications don't use this method.
5757
*
58-
* @see SimpleHttpExchangeImpl#createSimpleHttpExchange(HttpExchange)
58+
* @see SimpleHttpExchangeImpl#create(HttpExchange)
5959
* @since 02.00.00
6060
* @author Ktt Development
6161
*/
@@ -74,7 +74,7 @@ public abstract class SimpleHttpExchange {
7474
* @author Ktt Development
7575
*/
7676
static SimpleHttpExchange create(final HttpExchange exchange){
77-
return SimpleHttpExchangeImpl.createSimpleHttpExchange(exchange);
77+
return SimpleHttpExchangeImpl.create(exchange);
7878
}
7979

8080
//

0 commit comments

Comments
 (0)