Skip to content
This repository was archived by the owner on May 10, 2024. It is now read-only.

Commit e03c611

Browse files
authored
fix javadoc, prepare for release
1 parent 28c98d2 commit e03c611

File tree

5 files changed

+3
-9
lines changed

5 files changed

+3
-9
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
Initial Release
66

7-
**Full Changelog**: https://github.com/KatsuteDev/simplehttpserver/commits/1.0.0
7+
**Full Changelog**: [`5.0.0`](https://github.com/KatsuteDev/simplehttpserver/commits/5.0.0)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,4 +134,4 @@ Each commit automatically triggers the Java CI workflow, make sure you have acti
134134

135135
### 💼 License
136136

137-
This library is released under the [GNU General Public License (GPL) v2.0](https://github.com/KatsuteDev/simplehttpserver/blob/main/LICENSE).
137+
This library is released under the [GNU General Public License (GPL) v2.0](https://github.com/KatsuteDev/simplehttpserver/blob/main/LICENSE).

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>dev.katsute</groupId>
88
<artifactId>simplehttpserver</artifactId>
9-
<version>5.0.0-RC-2</version>
9+
<version>5.0.0</version>
1010

1111
<profiles>
1212
<profile>

src/main/java/dev/katsute/simplehttpserver/SimpleHttpServer.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,6 @@ public abstract class SimpleHttpServer extends HttpServer implements HttpServerE
123123
* @see #create(int, int)
124124
* @see #create(InetSocketAddress, int)
125125
* @since 5.0.0
126-
* @author Katsute
127126
*/
128127
public static SimpleHttpServer create() throws IOException {
129128
return new SimpleHttpServerImpl(null, null);
@@ -141,7 +140,6 @@ public static SimpleHttpServer create() throws IOException {
141140
* @see #create(int, int)
142141
* @see #create(InetSocketAddress, int)
143142
* @since 5.0.0
144-
* @author Katsute
145143
*/
146144
public static SimpleHttpServer create(final int port) throws IOException {
147145
return new SimpleHttpServerImpl(port, null);
@@ -160,7 +158,6 @@ public static SimpleHttpServer create(final int port) throws IOException {
160158
* @see #create(int)
161159
* @see #create(InetSocketAddress, int)
162160
* @since 5.0.0
163-
* @author Katsute
164161
*/
165162
public static SimpleHttpServer create(final int port, final int backlog) throws IOException {
166163
return new SimpleHttpServerImpl(port, backlog);

src/main/java/dev/katsute/simplehttpserver/SimpleHttpsServer.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ public abstract class SimpleHttpsServer extends HttpsServer implements HttpServe
4646
* @see #create(int, int)
4747
* @see #create(InetSocketAddress, int)
4848
* @since 5.0.0
49-
* @author Katsute
5049
*/
5150
public static SimpleHttpsServer create() throws IOException {
5251
return new SimpleHttpsServerImpl(null, null);
@@ -64,7 +63,6 @@ public static SimpleHttpsServer create() throws IOException {
6463
* @see #create(int, int)
6564
* @see #create(InetSocketAddress, int)
6665
* @since 5.0.0
67-
* @author Katsute
6866
*/
6967
public static SimpleHttpsServer create(final int port) throws IOException {
7068
return new SimpleHttpsServerImpl(port, null);
@@ -83,7 +81,6 @@ public static SimpleHttpsServer create(final int port) throws IOException {
8381
* @see #create(int)
8482
* @see #create(InetSocketAddress, int)
8583
* @since 5.0.0
86-
* @author Katsute
8784
*/
8885
public static SimpleHttpsServer create(final int port, final int backlog) throws IOException {
8986
return new SimpleHttpsServerImpl(port, backlog);

0 commit comments

Comments
 (0)