You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by ol...@apache.org on 2008/10/12 14:51:19 UTC

svn commit: r703813 - /httpcomponents/httpcore/trunk/RELEASE_NOTES.txt

Author: olegk
Date: Sun Oct 12 05:51:19 2008
New Revision: 703813

URL: http://svn.apache.org/viewvc?rev=703813&view=rev
Log:
Updated API changes section in the  release notes

Modified:
    httpcomponents/httpcore/trunk/RELEASE_NOTES.txt

Modified: httpcomponents/httpcore/trunk/RELEASE_NOTES.txt
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/RELEASE_NOTES.txt?rev=703813&r1=703812&r2=703813&view=diff
==============================================================================
--- httpcomponents/httpcore/trunk/RELEASE_NOTES.txt (original)
+++ httpcomponents/httpcore/trunk/RELEASE_NOTES.txt Sun Oct 12 05:51:19 2008
@@ -63,14 +63,24 @@
     protected boolean isEof();
 
 Class changed: org.apache.http.impl.SocketHttpServerConnection
-  Methods removed:
-    protected org.apache.http.io.SessionInputBuffer createHttpDataReceiver(java.net.Socket, int, org.apache.http.params.HttpParams) throws java.io.IOException;
-    protected org.apache.http.io.SessionOutputBuffer createHttpDataTransmitter(java.net.Socket, int, org.apache.http.params.HttpParams) throws java.io.IOException;
-
   Methods added:
     protected org.apache.http.io.SessionInputBuffer createSessionInputBuffer(java.net.Socket, int, org.apache.http.params.HttpParams) throws java.io.IOException;
     protected org.apache.http.io.SessionOutputBuffer createSessionOutputBuffer(java.net.Socket, int, org.apache.http.params.HttpParams) throws java.io.IOException;
 
+  Method changed:
+  old:
+    protected org.apache.http.io.SessionInputBuffer createHttpDataReceiver(java.net.Socket, int, org.apache.http.params.HttpParams) throws java.io.IOException;
+
+  new:
+    deprecated: protected org.apache.http.io.SessionInputBuffer createHttpDataReceiver(java.net.Socket, int, org.apache.http.params.HttpParams) throws java.io.IOException;
+
+  Method changed:
+  old:
+    protected org.apache.http.io.SessionOutputBuffer createHttpDataTransmitter(java.net.Socket, int, org.apache.http.params.HttpParams) throws java.io.IOException;
+
+  new:
+    deprecated: protected org.apache.http.io.SessionOutputBuffer createHttpDataTransmitter(java.net.Socket, int, org.apache.http.params.HttpParams) throws java.io.IOException;
+
 Class changed: org.apache.http.impl.io.SocketInputBuffer
   Methods added:
     protected int fillBuffer() throws java.io.IOException;