apm-agent-plugins/apm-servlet-plugin/src/main/java/co/elastic/apm/agent/servlet/helper/JavaxRecordingServletInputStreamWrapper.java [78:87]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public int readLine(byte[] b, int off, int len) throws IOException {
        try {
            final int read = servletInputStream.readLine(b, off, len);
            decode(b, off, read);
            return read;
        } catch (IOException e) {
            request.endOfBufferInput();
            throw e;
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



apm-agent-plugins/apm-servlet-plugin/src/main/java/co/elastic/apm/agent/servlet/helper/JakartaRecordingServletInputStreamWrapper.java [78:87]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public int readLine(byte[] b, int off, int len) throws IOException {
        try {
            final int read = servletInputStream.readLine(b, off, len);
            decode(b, off, read);
            return read;
        } catch (IOException e) {
            request.endOfBufferInput();
            throw e;
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



