Skip to content

Commit ca2a4a0

Browse files
committed
changing style on purpose to check if spotless plugin picks it up at
Signed-off-by: Alfredo Gutierrez <[email protected]>
1 parent 207993b commit ca2a4a0

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

server/src/main/java/com/hedera/block/server/consumer/LiveStreamObserver.java

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,16 @@
1919
import io.grpc.stub.StreamObserver;
2020

2121
/**
22-
* The LiveStreamObserver interface augments the StreamObserver interface with the notify() method thereby
23-
* allowing a caller to pass a block to the observer of a different type than the StreamObserver. In this way,
24-
* the implementation of this interface can receive and process inbound messages with different types from
25-
* the producer and response messages from the consumer.
22+
* The LiveStreamObserver interface augments the StreamObserver interface with the notify() method
23+
* thereby allowing a caller to pass a block to the observer of a different type than the
24+
* StreamObserver. In this way, the implementation of this interface can receive and process inbound
25+
* messages with different types from the producer and response messages from the consumer.
2626
*
2727
* @param <U> the type of the block
2828
* @param <V> the type of the StreamObserver
2929
*/
30-
public interface LiveStreamObserver<U, V> extends StreamObserver<V> {
30+
public interface LiveStreamObserver<U, V>
31+
extends StreamObserver<V> {
3132

3233
/**
3334
* Pass the block to the observer.

0 commit comments

Comments
 (0)