Skip to content
Snippets Groups Projects
Commit db5821c6 authored by brinn's avatar brinn
Browse files

fix: suppress unavoidable warning

SVN: 892
parent 8a2853dc
No related branches found
No related tags found
No related merge requests found
...@@ -37,6 +37,8 @@ public @interface CollectionMapping ...@@ -37,6 +37,8 @@ public @interface CollectionMapping
/** /**
* The concrete class to use as a collection. * The concrete class to use as a collection.
*/ */
@SuppressWarnings("unchecked")
// No way to avoid the warning since the compiler doesn't accept something like ArrayList<String>.class
Class<? extends Collection> collectionClass(); Class<? extends Collection> collectionClass();
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment