Fix JPMS warning from QpackDecoder

Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
This commit is contained in:
Lachlan Roberts 2021-09-15 17:49:07 +10:00 committed by Simone Bordet
parent a7a44f0d67
commit 746d6848e3
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ import static org.eclipse.jetty.http3.qpack.QpackException.QPACK_ENCODER_STREAM_
public class QpackDecoder implements Dumpable
{
public static final Logger LOG = LoggerFactory.getLogger(QpackDecoder.class);
private static final Logger LOG = LoggerFactory.getLogger(QpackDecoder.class);
private final List<Instruction> _instructions = new ArrayList<>();
private final List<MetaDataNotification> _metaDataNotifications = new ArrayList<>();