[banshee] [Hyena.Query] Add missing copyright lines, and fix cosmetic usage of 'using'



commit 4632ebe9df0d2ec5f1371873a10cc9c85615311b
Author: Andrés G. Aragoneses <knocte gmail com>
Date:   Mon Apr 5 19:49:48 2010 +0200

    [Hyena.Query] Add missing copyright lines, and fix cosmetic usage of 'using'

 .../Hyena/Hyena.Query/ExactStringQueryValue.cs     |    2 ++
 .../Hyena/Hyena.Query/ExactUriStringQueryValue.cs  |    4 +++-
 2 files changed, 5 insertions(+), 1 deletions(-)
---
diff --git a/src/Libraries/Hyena/Hyena.Query/ExactStringQueryValue.cs b/src/Libraries/Hyena/Hyena.Query/ExactStringQueryValue.cs
index 064cf70..28da5bc 100644
--- a/src/Libraries/Hyena/Hyena.Query/ExactStringQueryValue.cs
+++ b/src/Libraries/Hyena/Hyena.Query/ExactStringQueryValue.cs
@@ -4,6 +4,8 @@
 // Authors:
 //   John Millikin <jmillikin gmail com>
 //
+// Copyright (C) 2009 John Millikin
+//
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
 // "Software"), to deal in the Software without restriction, including
diff --git a/src/Libraries/Hyena/Hyena.Query/ExactUriStringQueryValue.cs b/src/Libraries/Hyena/Hyena.Query/ExactUriStringQueryValue.cs
index 221cace..01640c7 100644
--- a/src/Libraries/Hyena/Hyena.Query/ExactUriStringQueryValue.cs
+++ b/src/Libraries/Hyena/Hyena.Query/ExactUriStringQueryValue.cs
@@ -4,6 +4,8 @@
 // Authors:
 //   Andrés G. Aragoneses <knocte gmail com>
 //
+// Copyright (C) 2010 Andrés G. Aragoneses
+//
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
 // "Software"), to deal in the Software without restriction, including
@@ -31,7 +33,7 @@ namespace Hyena.Query
     public class ExactUriStringQueryValue : ExactStringQueryValue
     {
         protected override string StringValue {
-            get { return System.Uri.EscapeUriString (base.StringValue); }
+            get { return Uri.EscapeUriString (base.StringValue); }
         }
     }
 }



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]