*** 71,10 *** --- 71,14 --- public boolean isTrustedFinalField(Field f) { return f.isTrustedFinal(); } + public boolean isNullRestrictedField(Field f) { + return f.isNullRestricted(); + } + public <T> T newInstance(Constructor<T> ctor, Object[] args, Class<?> caller) throws IllegalAccessException, InstantiationException, InvocationTargetException { return ctor.newInstanceWithCaller(args, true, caller); }