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

Change SimpleHttpExchangeImpl so it extends SimpleHttpExchange #41

Merged
merged 4 commits into from
May 10, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
*
* @see HttpExchange
* @since 02.00.00
* @version 02.00.00
* @version 03.04.00
* @author Ktt Development
*/
@SuppressWarnings("SpellCheckingInspection")
Expand All @@ -55,7 +55,7 @@ public abstract class SimpleHttpExchange {
/**
* Create an empty {@link SimpleHttpExchange}. Applications don't use this method.
*
* @see SimpleHttpExchangeImpl#createSimpleHttpExchange(HttpExchange)
* @see SimpleHttpExchangeImpl#create(HttpExchange)
* @since 02.00.00
* @author Ktt Development
*/
Expand All @@ -74,7 +74,7 @@ public abstract class SimpleHttpExchange {
* @author Ktt Development
*/
static SimpleHttpExchange create(final HttpExchange exchange){
return SimpleHttpExchangeImpl.createSimpleHttpExchange(exchange);
return SimpleHttpExchangeImpl.create(exchange);
}

//
Expand Down
Loading