Merge pull request #6215 from eclipse/jetty-10.0.x-FixTypo

Use correct logger in AvailableEncoders.
This commit is contained in:
Lachlan 2021-04-27 15:56:04 +10:00 committed by GitHub
commit 24653e1aa0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -29,13 +29,12 @@ import org.eclipse.jetty.websocket.core.exception.InvalidSignatureException;
import org.eclipse.jetty.websocket.core.exception.InvalidWebSocketException;
import org.eclipse.jetty.websocket.core.internal.util.ReflectUtils;
import org.eclipse.jetty.websocket.javax.common.InitException;
import org.eclipse.jetty.websocket.javax.common.decoders.RegisteredDecoder;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class AvailableEncoders implements Predicate<Class<?>>, Closeable
{
private static final Logger LOG = LoggerFactory.getLogger(RegisteredDecoder.class);
private static final Logger LOG = LoggerFactory.getLogger(AvailableEncoders.class);
public static class RegisteredEncoder
{