Skip to content

Commit

Permalink
Untabify MethodInterceptorLogger
Browse files Browse the repository at this point in the history
  • Loading branch information
amaitland committed Jun 1, 2017
1 parent f5e2a93 commit 4f311e7
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions CefSharp.Example/ModelBinding/MethodInterceptorLogger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@

namespace CefSharp.Example.ModelBinding
{
public class MethodInterceptorLogger : IMethodInterceptor
{
object IMethodInterceptor.Intercept(Func<object> method, string methodName)
{
object result = method();
Debug.WriteLine("Called " + methodName);
return result;
}
}
public class MethodInterceptorLogger : IMethodInterceptor
{
object IMethodInterceptor.Intercept(Func<object> method, string methodName)
{
object result = method();
Debug.WriteLine("Called " + methodName);
return result;
}
}
}

0 comments on commit 4f311e7

Please sign in to comment.