Skip to content

Commit c6c5dd6

Browse files
committed
fix: update file references and clean up validation comments in models
1 parent 69afa49 commit c6c5dd6

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

doc/docfx.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"src": [
55
{
66
"files": [
7-
"KubernetesClient/KubernetesClient.csproj"
7+
"KubernetesClient/bin/Release/net8.0/KubernetesClient.dll"
88
],
99
"src": "../src"
1010
}

src/KubernetesClient/Models/KubernetesList.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,6 @@ public KubernetesList(IList<T> items, string apiVersion = default, string kind =
4444
/// <summary>
4545
/// Validate the object.
4646
/// </summary>
47-
/// <exception cref="ValidationException">
48-
/// Thrown if validation fails
49-
/// </exception>
5047
public void Validate()
5148
{
5249
if (Items == null)

src/LibKubernetesGenerator/templates/Model.cs.template

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,7 @@ namespace k8s.Models
6161
/// <summary>
6262
/// Validate the object.
6363
/// </summary>
64-
/// <exception cref="ValidationException">
65-
/// Thrown if validation fails
66-
/// </exception>
64+
6765
public virtual void Validate()
6866
{
6967
{{ for property in properties }}

0 commit comments

Comments
 (0)