Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.

Commit 3616389

Browse files
committed
Fix javadocs
1 parent 7a0b361 commit 3616389

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

grpc-server-spring-boot-autoconfigure/src/main/java/net/devh/boot/grpc/server/event/GrpcServerShutdownEvent.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@
2727
*
2828
* @see Server#shutdown()
2929
* @see Server#isShutdown()
30-
*
30+
*
3131
* @author Daniel Theuke ([email protected])
3232
*/
3333
public class GrpcServerShutdownEvent extends GrpcServerLifecycleEvent {
3434

3535
private static final long serialVersionUID = 1L;
3636

3737
/**
38-
* Creates a new GrpcServerStoppingEvent.
38+
* Creates a new GrpcServerShutdownEvent.
3939
*
4040
* @param lifecyle The lifecycle that caused this event.
4141
* @param clock The clock used to determine the timestamp.
@@ -50,7 +50,7 @@ public GrpcServerShutdownEvent(
5050
}
5151

5252
/**
53-
* Creates a new GrpcServerStartedEvent.
53+
* Creates a new GrpcServerShutdownEvent.
5454
*
5555
* @param lifecyle The lifecycle that caused this event.
5656
* @param server The server related to this event.

grpc-server-spring-boot-autoconfigure/src/main/java/net/devh/boot/grpc/server/event/GrpcServerStartedEvent.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* This event will be fired after the server has been started.
2929
*
3030
* @see Server#start()
31-
*
31+
*
3232
* @author Daniel Theuke ([email protected])
3333
*/
3434
public class GrpcServerStartedEvent extends GrpcServerLifecycleEvent {

grpc-server-spring-boot-autoconfigure/src/main/java/net/devh/boot/grpc/server/event/GrpcServerTerminatedEvent.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@
2626
* This event will be fired after the server completed to shutdown. The server will no longer process requests.
2727
*
2828
* @see Server#isTerminated()
29-
*
29+
*
3030
* @author Daniel Theuke ([email protected])
3131
*/
3232
public class GrpcServerTerminatedEvent extends GrpcServerLifecycleEvent {
3333

3434
private static final long serialVersionUID = 1L;
3535

3636
/**
37-
* Creates a new GrpcServerStoppingEvent.
37+
* Creates a new GrpcServerTerminatedEvent.
3838
*
3939
* @param lifecyle The lifecycle that caused this event.
4040
* @param clock The clock used to determine the timestamp.
@@ -49,7 +49,7 @@ public GrpcServerTerminatedEvent(
4949
}
5050

5151
/**
52-
* Creates a new GrpcServerStartedEvent.
52+
* Creates a new GrpcServerTerminatedEvent.
5353
*
5454
* @param lifecyle The lifecycle that caused this event.
5555
* @param server The server related to this event.

0 commit comments

Comments
 (0)