fix checkstyle
Signed-off-by: Ludovic Orban <lorban@bitronix.be>
This commit is contained in:
parent
ecfffe5f66
commit
56d5a6a101
|
@ -1,4 +1,4 @@
|
|||
package org.eclipse.jetty.http3.common;//
|
||||
//
|
||||
// ========================================================================
|
||||
// Copyright (c) 1995-2021 Mort Bay Consulting Pty Ltd and others.
|
||||
//
|
||||
|
@ -11,6 +11,8 @@ package org.eclipse.jetty.http3.common;//
|
|||
// ========================================================================
|
||||
//
|
||||
|
||||
package org.eclipse.jetty.http3.common;
|
||||
|
||||
import java.io.Closeable;
|
||||
import java.io.IOException;
|
||||
import java.net.InetSocketAddress;
|
||||
|
@ -416,7 +418,7 @@ public class QuicDatagramEndPoint extends AbstractEndPoint implements ManagedSel
|
|||
ManagedSelector.safeReadyOps(_key));
|
||||
}
|
||||
|
||||
public final static class InetAddressArgument
|
||||
public static final class InetAddressArgument
|
||||
{
|
||||
private final ThreadLocal<InetSocketAddress> threadLocal = new ThreadLocal<>();
|
||||
|
||||
|
|
|
@ -264,7 +264,8 @@ public abstract class QuicSession
|
|||
|
||||
public Flusher(Scheduler scheduler)
|
||||
{
|
||||
timeout = new CyclicTimeout(scheduler) {
|
||||
timeout = new CyclicTimeout(scheduler)
|
||||
{
|
||||
@Override
|
||||
public void onTimeoutExpired()
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue