From 2fafecc8c234f4cd9be5b8d7c027f6f15c94cfc7 Mon Sep 17 00:00:00 2001 From: Ashutosh Kumar Date: Wed, 27 Dec 2023 09:22:32 +0530 Subject: [PATCH] remove outdated comment Signed-off-by: Ashutosh Kumar --- types/nullable_test.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/types/nullable_test.go b/types/nullable_test.go index c6b246f..79ef2c2 100644 --- a/types/nullable_test.go +++ b/types/nullable_test.go @@ -8,7 +8,6 @@ import ( ) type SimpleString struct { - // cannot decide if it was provided with `null` value in json Name Nullable[string] `json:"name"` } @@ -61,7 +60,6 @@ func TestSimpleString(t *testing.T) { } type SimpleInt struct { - // cannot decide if it was provided with `null` value in json ReplicaCount Nullable[int] `json:"replicaCount"` }