squash diverse compiler warnings
Signed-off-by: Gavin King <gavin@hibernate.org>
This commit is contained in:
parent
ef4c20debb
commit
cda6e58427
|
@ -76,7 +76,7 @@ public class BasicDotIdentifierConsumer implements DotIdentifierConsumer {
|
|||
reset();
|
||||
}
|
||||
|
||||
if ( pathSoFar.length() != 0 ) {
|
||||
if ( !pathSoFar.isEmpty() ) {
|
||||
pathSoFar.append( '.' );
|
||||
}
|
||||
pathSoFar.append( identifier );
|
||||
|
|
|
@ -12,6 +12,7 @@ import java.util.Collection;
|
|||
import java.util.List;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.checkerframework.checker.nullness.qual.Nullable;
|
||||
import org.hibernate.boot.registry.classloading.spi.ClassLoaderService;
|
||||
import org.hibernate.boot.registry.classloading.spi.ClassLoadingException;
|
||||
import org.hibernate.metamodel.model.domain.EntityDomainType;
|
||||
|
|
Loading…
Reference in New Issue