diff --git a/docs/source/upgrading/4.0-4.1.rst b/docs/source/upgrading/4.0-4.1.rst index 386667c7df..68502abd57 100644 --- a/docs/source/upgrading/4.0-4.1.rst +++ b/docs/source/upgrading/4.0-4.1.rst @@ -51,14 +51,3 @@ by the application code: server.setBodyParser(MIME_FORM_MULTIPART, formMultipartParser); -Stream methods -============== - -:pull-request:`1867` added a :cpp:func:`IDataSourceStream::readString(size_t)` method which shadows -:cpp:func:`Stream::readString`. Its behaviour was also inconsistent in that the stream position -was left unchanged for memory streams. This has been corrected, and is now a virtual method. - -The :c:func:`Stream::readBytes` has been virtualised and overriden for :cpp:class:`IDataSourceStream` -descendents for more efficient operation, especially with ArduinoJson. -For normal read operations where the stream position is to be updated, applications should use -this method in preference to :c:func:`IDataSourceStream::readMemoryBlock`.