Skip to content

Commit bea4261

Browse files
committed
Add annotation to MethodValidator
1 parent e0e2aa0 commit bea4261

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
package com.hubspot.jinjava.el.ext;
22

33
import java.lang.reflect.Method;
4+
import javax.annotation.Nonnull;
45
import javax.annotation.Nullable;
56

67
public interface MethodValidator {
78
@Nullable
8-
Method validateMethod(Method m);
9+
Method validateMethod(@Nonnull Method m);
910
}

0 commit comments

Comments
 (0)