Skip to content

Commit 2ad4dfb

Browse files
Fix documentation and project compliance failures
1 parent c8ac095 commit 2ad4dfb

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

Ground_Engine/Ground_Engine.csproj

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,5 @@
4646
<Private>false</Private>
4747
<SpecificVersion>false</SpecificVersion>
4848
</Reference>
49-
<Reference Include="Units_Engine">
50-
<HintPath>..\..\..\..\..\..\ProgramData\BHoM\Assemblies\Units_Engine.dll</HintPath>
51-
</Reference>
52-
<Reference Include="Units_oM">
53-
<HintPath>..\..\..\..\..\..\ProgramData\BHoM\Assemblies\Units_oM.dll</HintPath>
54-
</Reference>
5549
</ItemGroup>
5650
</Project>

Ground_Engine/Query/IsValid.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,11 +90,11 @@ public static bool IsValid(this Stratum strata, string msg = "", [CallerMemberNa
9090
return true;
9191
}
9292

93-
[Description("Checks if a Strata or its defining properties are valid and outputs relevant error message.")]
94-
[Input("strata", "The Strata to test for validity.")]
93+
[Description("Checks if a ContaminantSample or its defining properties are valid and outputs relevant error message.")]
94+
[Input("sample", "The ContaminantSample to test for validity.")]
9595
[Input("msg", "Optional message to be returned in addition to the generated error message.")]
9696
[Input("methodName", "The name of the method to reference in the error message.")]
97-
[Output("isNull", "True if the Strata or its defining properties are valid.")]
97+
[Output("isNull", "True if the ContaminantSample or its defining properties are valid.")]
9898
public static bool IsValid(this ContaminantSample sample, string msg = "", [CallerMemberName] string methodName = "Method")
9999
{
100100
if (sample == null)

0 commit comments

Comments
 (0)