Build tidyups

This commit is contained in:
Ben Adams
2021-01-03 17:04:20 +00:00
parent 1f10ebc836
commit b49f5e257a
4 changed files with 6 additions and 6 deletions

View File

@@ -32,7 +32,7 @@ namespace Ben.Demystifier.Test
var s = EnhancedStackTrace.GetMethodDisplayString(sf.GetMethod());
Assert.True(true, "Does not throw exception when diagnosing generic method display string.");
}
catch (Exception ioe)
catch (Exception)
{
Assert.True(false, "Must not throw an exception when diagnosing generic method display string.");
}

View File

@@ -19,11 +19,11 @@ namespace Ben.Demystifier.Test
}
}
public void Throw(Generic<(int a, string b)>.Nested nested)
private void Throw(Generic<(int a, string b)>.Nested nested)
{
throw null;
}
}
public class Generic<T> { public struct Nested { } }
}
}