Removed uneeded annotation

This commit is contained in:
Luca Frosini 2020-07-02 18:53:18 +02:00
parent ef41afa38d
commit 16c26ad39f
1 changed files with 0 additions and 3 deletions

View File

@ -17,21 +17,18 @@ class ElementMappingAction implements SchemaAction {
}
@SuppressWarnings("unchecked")
@Override
public <P extends PropertyElement> void managePropertyClass(Class<P> e)
throws Exception {
ElementMapper.registerSubtypes(e);
}
@SuppressWarnings("unchecked")
@Override
public <E extends EntityElement> void manageEntityClass(Class<E> e)
throws Exception {
ElementMapper.registerSubtypes(e);
}
@SuppressWarnings("unchecked")
@Override
public <R extends RelationElement<? extends EntityElement, ? extends EntityElement>> void manageRelationClass(
Class<R> r) throws Exception {