Author: jgomes
Date: Fri Oct 17 16:14:33 2008
New Revision: 705776
URL: http://svn.apache.org/viewvc?rev=705776&view=rev
Log:
Changed ifdef from MONO to NET_1_1.
Modified:
activemq/activemq-dotnet/Apache.NMS.MSMQ/tags/1.0.0/src/main/csharp/PrimitiveMap.cs
Modified:
activemq/activemq-dotnet/Apache.NMS.MSMQ/tags/1.0.0/src/main/csharp/PrimitiveMap.cs
URL:
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.MSMQ/tags/1.0.0/src/main/csharp/PrimitiveMap.cs?rev=705776&r1=705775&r2=705776&view=diff
==============================================================================
---
activemq/activemq-dotnet/Apache.NMS.MSMQ/tags/1.0.0/src/main/csharp/PrimitiveMap.cs
(original)
+++
activemq/activemq-dotnet/Apache.NMS.MSMQ/tags/1.0.0/src/main/csharp/PrimitiveMap.cs
Fri Oct 17 16:14:33 2008
@@ -17,7 +17,7 @@
using Apache.NMS;
using System;
using System.Collections;
-#if !MONO
+#if !NET_1_1
using System.Collections.Generic;
#endif
@@ -44,7 +44,7 @@
public const byte LIST_TYPE = 12;
public const byte BIG_STRING_TYPE = 13;
-#if MONO
+#if NET_1_1
private IDictionary dictionary = new Hashtable();
#else
private Dictionary<String, object> dictionary = new Dictionary<String,
object>();
@@ -281,7 +281,7 @@
{
String s = "{";
bool first = true;
-#if MONO
+#if NET_1_1
foreach (DictionaryEntry entry in dictionary)
#else
foreach (KeyValuePair<String, object> entry in dictionary)