Skip to content

Commit

Permalink
2019
Browse files Browse the repository at this point in the history
  • Loading branch information
bdunderscore committed Mar 16, 2024
1 parent 433f281 commit fb95596
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions UnitTests~/ParameterIntrospection/InheritanceTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public TestInterface1Provider(ITestInterface1 _)

}

public IEnumerable<ProvidedParameter> GetSuppliedParameters(BuildContext context = null)
public IEnumerable<ProvidedParameter> GetSuppliedParameters(BuildContext context)
{
return Array.Empty<ProvidedParameter>();
}
Expand All @@ -33,7 +33,7 @@ public TestInterface2Provider(ITestInterface2 _)

}

public IEnumerable<ProvidedParameter> GetSuppliedParameters(BuildContext context = null)
public IEnumerable<ProvidedParameter> GetSuppliedParameters(BuildContext context)
{
return Array.Empty<ProvidedParameter>();
}
Expand All @@ -47,7 +47,7 @@ public DepthResolutionProvider(PTCDepthResolutionComponentBase2 _)

}

public IEnumerable<ProvidedParameter> GetSuppliedParameters(BuildContext context = null)
public IEnumerable<ProvidedParameter> GetSuppliedParameters(BuildContext context)
{
return Array.Empty<ProvidedParameter>();
}
Expand Down

0 comments on commit fb95596

Please sign in to comment.