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:
authorKonstantin Triger <kostat@mono-cvs.ximian.com>2007-02-05 15:33:17 +0300
committerKonstantin Triger <kostat@mono-cvs.ximian.com>2007-02-05 15:33:17 +0300
commit3a39a3277a3137fa181268055e564ee7d49ac24c (patch)
treef4545de03da12d5b2722d24f790d0fa93bf87d94 /mcs/class/System/System.IO.Compression/DeflateStream.cs
parent9a6fb78f3e1e90cbed6be5507180e78f30729cc0 (diff)
remove TARGET_JVM defines
svn path=/trunk/mcs/; revision=72291
Diffstat (limited to 'mcs/class/System/System.IO.Compression/DeflateStream.cs')
-rw-r--r--mcs/class/System/System.IO.Compression/DeflateStream.cs2
1 files changed, 0 insertions, 2 deletions
diff --git a/mcs/class/System/System.IO.Compression/DeflateStream.cs b/mcs/class/System/System.IO.Compression/DeflateStream.cs
index e113210abc9..2a1964c49e3 100644
--- a/mcs/class/System/System.IO.Compression/DeflateStream.cs
+++ b/mcs/class/System/System.IO.Compression/DeflateStream.cs
@@ -45,7 +45,6 @@ namespace System.IO.Compression {
Z_BLOCK = 5,
};
-#if !TARGET_JVM
[DllImport("MonoPosixHelper")]
static extern IntPtr create_z_stream(CompressionMode compress, bool gzip);
[DllImport("MonoPosixHelper")]
@@ -64,7 +63,6 @@ namespace System.IO.Compression {
static extern ZReturnConsts z_stream_inflate(IntPtr z_stream, ref int avail_out);
[DllImport("MonoPosixHelper")]
static extern ZReturnConsts z_stream_deflate(IntPtr z_stream, ZFlushConsts flush, IntPtr next_out, ref int avail_out);
-#endif
delegate int ReadMethod (byte[] array, int offset, int count);
delegate void WriteMethod(byte[] array, int offset, int count);