[hyena] Paths: mark class as static



commit 640359c0e021d1c473232189c9f182f44ff86cff
Author: Andres G. Aragoneses <knocte gmail com>
Date:   Sun Nov 11 21:04:57 2012 +0000

    Paths: mark class as static
    
    All its members all static so we can mark the class as static too.
    (It wouldn't make sense that this class would be instantiated.)
    
    No change of behaviour in this commit.

 Hyena/Hyena/Paths.cs |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/Hyena/Hyena/Paths.cs b/Hyena/Hyena/Paths.cs
index f87cc77..5ead587 100644
--- a/Hyena/Hyena/Paths.cs
+++ b/Hyena/Hyena/Paths.cs
@@ -33,7 +33,7 @@ using System.Text;
 
 namespace Hyena
 {
-    public class Paths
+    public static class Paths
     {
         public const char UnixSeparator = ':';
         public const char DosSeparator = ';';



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