Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
tobias-tengler committed Jan 2, 2025
1 parent c676c5c commit 221294b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/HotChocolate/Skimmed/src/Skimmed/BuiltIns/BuiltIns.cs
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,6 @@ public static bool IsBuiltInDirective(string name)
Skip.Name => true,
Deprecated.Name => true,
SpecifiedBy.Name => true,
// SemanticNonNull.Name => true,
_ => false
};
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ public sealed class SemanticNonNullDirectiveDefinition : DirectiveDefinition
internal SemanticNonNullDirectiveDefinition(ScalarTypeDefinition intType)
: base(BuiltIns.SemanticNonNull.Name)
{
IsSpecDirective = true;

var levelsArgument = new InputFieldDefinition(BuiltIns.SemanticNonNull.Levels, new ListTypeDefinition(intType));
levelsArgument.DefaultValue = new ListValueNode(new IntValueNode(0));
Arguments.Add(levelsArgument);
Expand Down

0 comments on commit 221294b

Please sign in to comment.