--- old/src/jdk.internal.vm.compiler/share/classes/org.graalvm.options/src/org/graalvm/options/OptionKey.java 2017-09-12 22:24:50.940911634 -0700 +++ new/src/jdk.internal.vm.compiler/share/classes/org.graalvm.options/src/org/graalvm/options/OptionKey.java 2017-09-12 22:24:50.781904469 -0700 @@ -53,13 +53,11 @@ } /** - * Constructs a new option key given a default value and option key. The default value and the - * type must not be null. + * Constructs a new option key given a default value and option key. * * @since 1.0 */ public OptionKey(T defaultValue, OptionType type) { - Objects.requireNonNull(defaultValue); Objects.requireNonNull(type); this.defaultValue = defaultValue; this.type = type;