2009-03-28 Jb Evain <jbevain@novell.com>
[mono.git] / mcs / class / System.Core / System.Linq / IGrouping.cs
index 8a5450dcd542321129d6e011881dd99a832e9789..559e91e076646344862293632b99d0507b10c315 100644 (file)
@@ -5,10 +5,10 @@
 // distribute, sublicense, and/or sell copies of the Software, and to
 // permit persons to whom the Software is furnished to do so, subject to
 // the following conditions:
-// 
+//
 // The above copyright notice and this permission notice shall be
 // included in all copies or substantial portions of the Software.
-// 
+//
 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 //        Alejandro Serrano "Serras" (trupill@yahoo.es)
 //
 
-using System;
 using System.Collections.Generic;
 
-namespace System.Linq
-{
-        public interface IGrouping<TKey, TElement> : IEnumerable<TElement>
-        {
-                TKey Key { get; }
-        }
+namespace System.Linq {
+
+       public interface IGrouping<TKey, TElement> : IEnumerable<TElement> {
+               TKey Key { get; }
+       }
 }