[blam] Item: Remove needless cast



commit cff48f3ad2b3423323f39b3a9e3c1358cce44bf8
Author: Carlos Martín Nieto <carlos cmartin tk>
Date:   Sun Mar 27 17:37:19 2011 +0200

    Item: Remove needless cast
    
    Signed-off-by: Carlos Martín Nieto <carlos cmartin tk>

 src/Channel.cs |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/Channel.cs b/src/Channel.cs
index 7e57c54..dee8283 100644
--- a/src/Channel.cs
+++ b/src/Channel.cs
@@ -166,7 +166,7 @@ namespace Imendio.Blam {
                     if(id == null){
                         continue;
                     }
-                    Item item = store.Get(id) as Item;
+                    Item item = store.Get(id);
                     if(item == null){
                     } else {
                         nlist.Add(id);



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