Skip to content

Commit

Permalink
Make pmd happy
Browse files Browse the repository at this point in the history
  • Loading branch information
daschl committed Oct 3, 2024
1 parent 379e4e7 commit 4e2a1d0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,15 +76,15 @@ public ConnectionObserverInitializer(final ConnectionObserver observer,
* @param observer {@link ConnectionObserver} to report network events
* @param connectionInfoFactory {@link Function} that creates {@link ConnectionInfo} from the provided
* {@link Channel} to report {@link ConnectionObserver#onTransportHandshakeComplete(ConnectionInfo)}
* @param handshakeOnActive {@code true} if the observed connection is secure
* @param ignored ignored parameter.
* @param client {@code true} if this initializer is used on the client-side
* @deprecated Use {@link #ConnectionObserverInitializer(ConnectionObserver, Function, boolean, SslConfig)}
* instead
*/
@Deprecated // FIXME: 0.43 - remove deprecated ctor
public ConnectionObserverInitializer(final ConnectionObserver observer,
final Function<Channel, ConnectionInfo> connectionInfoFactory,
final boolean handshakeOnActive,
final boolean ignored,
final boolean client) {
this(observer, connectionInfoFactory, client, null);
}
Expand Down

0 comments on commit 4e2a1d0

Please sign in to comment.