Commit 1860425

mo khan <mo@mokhan.ca>
2010-02-21 16:30:54
removed unused anonymous interceptor.
1 parent 251a0fa
Changed files (1)
product
client
presentation.windows
product/client/presentation.windows/infrastructure/AnonymousInterceptor.cs
@@ -1,20 +0,0 @@
-using System;
-using Castle.Core.Interceptor;
-
-namespace presentation.windows.infrastructure
-{
-    public class AnonymousInterceptor : IInterceptor
-    {
-        Action<IInvocation> interceptor;
-
-        public AnonymousInterceptor(Action<IInvocation> interceptor)
-        {
-            this.interceptor = interceptor;
-        }
-
-        public void Intercept(IInvocation invocation)
-        {
-            interceptor(invocation);
-        }
-    }
-}
\ No newline at end of file