Author: tabish
Date: Wed Jun 27 21:08:04 2012
New Revision: 1354726
URL: http://svn.apache.org/viewvc?rev=1354726&view=rev
Log:
Fix some warnings that appear on the Mono builds.
Modified:
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/Util/BitArray.cs
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/Util/BitArrayBin.cs
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/Util/LRUCache.cs
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/test/csharp/Util/BitArrayBinTest.cs
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/test/csharp/Util/LRUCacheTest.cs
Modified:
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/Util/BitArray.cs
URL:
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/Util/BitArray.cs?rev=1354726&r1=1354725&r2=1354726&view=diff
==============================================================================
---
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/Util/BitArray.cs
(original)
+++
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/Util/BitArray.cs
Wed Jun 27 21:08:04 2012
@@ -1,4 +1,4 @@
-/**
+/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
Modified:
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/Util/BitArrayBin.cs
URL:
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/Util/BitArrayBin.cs?rev=1354726&r1=1354725&r2=1354726&view=diff
==============================================================================
---
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/Util/BitArrayBin.cs
(original)
+++
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/Util/BitArrayBin.cs
Wed Jun 27 21:08:04 2012
@@ -1,4 +1,4 @@
-/**
+/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
@@ -76,12 +76,9 @@ namespace Apache.NMS.ActiveMQ.Util
}
- /**
- * Get the boolean value at the index
- *
- * @param index
- * @return true/false
- */
+ /// <summary>
+ /// Get the boolean value at the index
+ /// </summary>
public bool GetBit(long index)
{
bool answer = index >= firstIndex;
@@ -103,12 +100,9 @@ namespace Apache.NMS.ActiveMQ.Util
return answer;
}
- /**
- * Get the BitArray for the index
- *
- * @param index
- * @return BitArray
- */
+ /// <summary>
+ /// Get the BitArray for the index
+ /// </summary>
private BitArray GetBitArray(long index)
{
int bin = GetBin(index);
@@ -138,12 +132,9 @@ namespace Apache.NMS.ActiveMQ.Util
return answer;
}
- /**
- * Get the index of the bin from the total index
- *
- * @param index
- * @return the index of the bin
- */
+ /// <summary>
+ /// Get the index of the bin from the total index
+ /// </summary>
private int GetBin(long index)
{
int answer = 0;
@@ -158,12 +149,9 @@ namespace Apache.NMS.ActiveMQ.Util
return answer;
}
- /**
- * Get the offset into a bin from the total index
- *
- * @param index
- * @return the relative offset into a bin
- */
+ /// <summary>
+ /// Get the offset into a bin from the total index
+ /// </summary>
private int GetOffset(long index)
{
int answer = 0;
Modified:
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/Util/LRUCache.cs
URL:
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/Util/LRUCache.cs?rev=1354726&r1=1354725&r2=1354726&view=diff
==============================================================================
---
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/Util/LRUCache.cs
(original)
+++
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/Util/LRUCache.cs
Wed Jun 27 21:08:04 2012
@@ -1,4 +1,4 @@
-/**
+/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
Modified:
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/test/csharp/Util/BitArrayBinTest.cs
URL:
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/test/csharp/Util/BitArrayBinTest.cs?rev=1354726&r1=1354725&r2=1354726&view=diff
==============================================================================
---
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/test/csharp/Util/BitArrayBinTest.cs
(original)
+++
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/test/csharp/Util/BitArrayBinTest.cs
Wed Jun 27 21:08:04 2012
@@ -1,4 +1,4 @@
-/**
+/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
Modified:
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/test/csharp/Util/LRUCacheTest.cs
URL:
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/test/csharp/Util/LRUCacheTest.cs?rev=1354726&r1=1354725&r2=1354726&view=diff
==============================================================================
---
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/test/csharp/Util/LRUCacheTest.cs
(original)
+++
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/test/csharp/Util/LRUCacheTest.cs
Wed Jun 27 21:08:04 2012
@@ -1,4 +1,4 @@
-/**
+/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.