Fix precondition assertions

This commit is contained in:
Sam Brannen
2022-11-08 14:21:58 +01:00
parent d0b162a76c
commit 9e4cddf5db
2 changed files with 3 additions and 3 deletions

View File

@@ -53,7 +53,7 @@ class InjectionCodeGenerator {
InjectionCodeGenerator(ClassName targetClassName, RuntimeHints hints) {
Assert.notNull(hints, "ClassName must not be null");
Assert.notNull(targetClassName, "ClassName must not be null");
Assert.notNull(hints, "RuntimeHints must not be null");
this.targetClassName = targetClassName;
this.hints = hints;