HHH-16261 - Avoid explicit use of ElementKind.RECORD to make code compilable under JDK 11
This commit is contained in:
parent
bece9e90bf
commit
0b1d1a1595
|
@ -223,7 +223,7 @@ public class JPAMetaModelEntityProcessor extends AbstractProcessor {
|
|||
private void handleRootElementAnnotationMirrors(final Element element) {
|
||||
List<? extends AnnotationMirror> annotationMirrors = element.getAnnotationMirrors();
|
||||
for ( AnnotationMirror mirror : annotationMirrors ) {
|
||||
if ( !ElementKind.CLASS.equals( element.getKind() ) && !ElementKind.RECORD.equals( element.getKind() ) ) {
|
||||
if ( !element.getKind().isClass() || ElementKind.ENUM.equals( element.getKind() ) ) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
|
@ -316,7 +316,8 @@ class BasicAttributeVisitor extends SimpleTypeVisitor6<Boolean, Element> {
|
|||
return Boolean.TRUE;
|
||||
}
|
||||
|
||||
if ( ElementKind.CLASS.equals( element.getKind() ) || ElementKind.INTERFACE.equals( element.getKind() ) || ElementKind.RECORD.equals( element.getKind() ) ) {
|
||||
if ( ( element.getKind().isClass() && !ElementKind.ENUM.equals( element.getKind() ) ) ||
|
||||
ElementKind.INTERFACE.equals( element.getKind() ) ) {
|
||||
TypeElement typeElement = ( (TypeElement) element );
|
||||
String typeName = typeElement.getQualifiedName().toString();
|
||||
if ( Constants.BASIC_TYPES.contains( typeName ) ) {
|
||||
|
|
Loading…
Reference in New Issue