Skip to content

Commit

Permalink
Merge pull request #375 from JosephWoodward/RemoveUnreachableCode
Browse files Browse the repository at this point in the history
Removed unreachable code
  • Loading branch information
JakeGinnivan committed May 21, 2016
2 parents 0f298ec + ec3e2e6 commit 12b321e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Shouldly.Shared/Configuration/TestMethodInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ static MethodBase GetRealMethod(MethodBase method)
static bool ContainsAttribute(object[] attributes, string attributeName)
{
{
return attributes.Any(a => a.GetType().FullName.StartsWith(attributeName)); return attributes.Any(a => a.GetType().FullName.StartsWith(attributeName));
return attributes.Any(a => a.GetType().FullName.StartsWith(attributeName));
}
}

Expand Down

0 comments on commit 12b321e

Please sign in to comment.