Merge pull request #1190 from DataDog/devinsba/hibernate-null-entity-check
Add null check to hibernate decorator
This commit is contained in:
commit
660041636a
|
@ -47,6 +47,9 @@ public class HibernateDecorator extends OrmClientDecorator {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String entityName(final Object entity) {
|
public String entityName(final Object entity) {
|
||||||
|
if (entity == null) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
String name = null;
|
String name = null;
|
||||||
final Set<String> annotations = new HashSet<>();
|
final Set<String> annotations = new HashSet<>();
|
||||||
for (final Annotation annotation : entity.getClass().getDeclaredAnnotations()) {
|
for (final Annotation annotation : entity.getClass().getDeclaredAnnotations()) {
|
||||||
|
|
Loading…
Reference in New Issue