This is left over code from previous refactoring. The comment is incorrect now -- we never set _klass to NULL.
bool is_excluded() {
- // _klass may become NULL due to DynamicArchiveBuilder::set_to_null
- return _excluded || _failed_verification || _klass == NULL;
+ return _excluded || _failed_verification;
}
bool is_excluded() {
- // _klass may become NULL due to DynamicArchiveBuilder::set_to_null
- return _excluded || _failed_verification || _klass == NULL;
+ return _excluded || _failed_verification;
}