--- old/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/hpack/StringReader.java 2017-11-30 04:04:40.663696366 -0800 +++ new/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/hpack/StringReader.java 2017-11-30 04:04:40.482680541 -0800 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -24,6 +24,7 @@ */ package jdk.incubator.http.internal.hpack; +import java.io.IOException; import java.nio.ByteBuffer; import java.util.Arrays; @@ -51,7 +52,7 @@ private boolean huffman; private int remainingLength; - boolean read(ByteBuffer input, Appendable output) { + boolean read(ByteBuffer input, Appendable output) throws IOException { if (state == DONE) { return true; }