This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 7.0.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
commit a7217c837f133153a1a0df6bb9b9837efafe4b02 Author: Mark Thomas <[email protected]> AuthorDate: Thu Oct 22 10:58:40 2020 +0100 Add missing annotation --- java/org/apache/coyote/http11/AbstractInputBuffer.java | 1 + 1 file changed, 1 insertion(+) diff --git a/java/org/apache/coyote/http11/AbstractInputBuffer.java b/java/org/apache/coyote/http11/AbstractInputBuffer.java index b08194b..898bc61 100644 --- a/java/org/apache/coyote/http11/AbstractInputBuffer.java +++ b/java/org/apache/coyote/http11/AbstractInputBuffer.java @@ -290,6 +290,7 @@ public abstract class AbstractInputBuffer<S> implements InputBuffer{ * Available bytes in the buffers (note that due to encoding, this may not * correspond). */ + @Override public int available() { int result = (lastValid - pos); if ((result == 0) && (lastActiveFilter >= 0)) { --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
