Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@gnome.org>2006-03-11 22:07:56 +0300
committerMiguel de Icaza <miguel@gnome.org>2006-03-11 22:07:56 +0300
commita5bd130af9800171ea504a89ffd04572502f07eb (patch)
tree560c8ddfa26084190fa201767a1ea094209e1ab2 /mcs/class/System/System.IO.Compression/DeflateStream.cs
parentcc089e12034ded28129893993d9f6e0c497f6a04 (diff)
2006-03-11 Miguel de Icaza <miguel@novell.com>
* Uri.cs: Pragma disable warning 612 (Obsolete methods are being used by us internally). Ponder: should we instead move our methods to use new versions of the Obsoleted ones? 2006-03-11 Miguel de Icaza <miguel@novell.com> * CodeNamespaceImportCollection.cs: It turns out that a lot of the errors flagged with "!" were just missing explicit interface implementations. Implement. 2006-03-11 Miguel de Icaza <miguel@novell.com> * CodeDomConfigurationHandler.cs: Comment out unused methods. * TempFileCollection.cs: Implement explicitly some interface methods to get rid of the "!" errors on CorCompare. 2006-03-11 Miguel de Icaza <miguel@novell.com> * Queue.cs: Flag as serializable. * LinkedList.cs (OnDeserialization): Fix signature. * SortedList.cs: Implement explicitly a few methods that were flagged by corcompare. 2006-03-11 Miguel de Icaza <miguel@novell.com> * IOrderedDictionary.cs: Flag GetEnumerator as a "new" method to avoid warning. 2006-03-11 Miguel de Icaza <miguel@novell.com> * ConfigurationSettings.cs (ChangeConfigurationSettings): Make internal to avoid warnings. This routine is called from System.Web with MethodInfo.Invoke. 2006-03-11 Miguel de Icaza <miguel@novell.com> * DeflateStream.cs: Comment out DllImport that was not being used. 2006-03-11 Miguel de Icaza <miguel@novell.com> * y * SerialPort.cs: Remove unused variable (writeBuffer). * SerialPortStream.cs (Dispose): override, not new. 2006-03-11 Miguel de Icaza <miguel@novell.com> * WebClient.cs: Only expose the right methods to avoid warnings. * FtpDataStream.cs (Dispose): Fix signature. * FtpWebResponse.cs: Comment out keepAlive field (unused, sounds like we are missing features here). * IPAddress.cs: Move m_HashCode property to the end, and set pragmas to disable warnings. 2006-03-11 Miguel de Icaza <miguel@novell.com> * MailAddress.cs: Comment out unused field to remove warning. 2006-03-11 Miguel de Icaza <miguel@novell.com> * NetworkChange.cs: Use pragmas to eliminate warnings from events that we do not trigger yet. This is a candidate for using Aaron's NetworkManager code. But would make us depend on d-bus. * NetworkInformationException.cs: Use error_code for ErrorCode, instead of NativeErrorCode. Fixes warning. 2006-03-11 Miguel de Icaza <miguel@novell.com> * AuthenticatedStream.cs: Fixed normative parameter names (yes, we need to do this everywhere one day). (Close): actually obey the "leaveInnerStreamOpen" setting from the constructor. 2006-03-11 Miguel de Icaza <miguel@novell.com> * NetworkStream.cs (Dispose): Use the right signature depending on the profile being built. 2006-03-11 Miguel de Icaza <miguel@novell.com> * X509Chain.cs: Flagged member as internal to avoid unused warning. * X500DistinguishedName.cs: Comment out unused names and move temporary unused variables inside the comments that were removed svn path=/trunk/mcs/; revision=57836
Diffstat (limited to 'mcs/class/System/System.IO.Compression/DeflateStream.cs')
-rw-r--r--mcs/class/System/System.IO.Compression/DeflateStream.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/mcs/class/System/System.IO.Compression/DeflateStream.cs b/mcs/class/System/System.IO.Compression/DeflateStream.cs
index 35b7ec0a539..e325b296d25 100644
--- a/mcs/class/System/System.IO.Compression/DeflateStream.cs
+++ b/mcs/class/System/System.IO.Compression/DeflateStream.cs
@@ -58,8 +58,8 @@ namespace System.IO.Compression {
static extern int z_stream_get_avail_in(IntPtr z_stream);
[DllImport("MonoPosixHelper")]
static extern void z_stream_set_next_out(IntPtr z_stream, IntPtr next_out);
- [DllImport("MonoPosixHelper")]
- static extern void z_stream_set_avail_out(IntPtr z_stream, int avail_out);
+ //[DllImport("MonoPosixHelper")]
+ //static extern void z_stream_set_avail_out(IntPtr z_stream, int avail_out);
[DllImport("MonoPosixHelper")]
static extern ZReturnConsts z_stream_inflate(IntPtr z_stream, ref int avail_out);
[DllImport("MonoPosixHelper")]