Skip to content

Commit

Permalink
Remove useless class name prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
wtfsck committed May 9, 2012
1 parent 3d1e3e6 commit c78e77c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blocks/DotNetUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,7 @@ public static MethodDefinition clone(MethodDefinition method) {
newMethod.Parameters.Add(new ParameterDefinition(arg.Name, arg.Attributes, arg.ParameterType));
foreach (var gp in method.GenericParameters)
newMethod.GenericParameters.Add(new GenericParameter(gp.Name, newMethod) { Attributes = gp.Attributes });
DotNetUtils.copyBodyFromTo(method, newMethod);
copyBodyFromTo(method, newMethod);
return newMethod;
}

Expand Down

0 comments on commit c78e77c

Please sign in to comment.