Skip to content

Commit

Permalink
ISPN-1999 Fix generics to make FqnTest pass again
Browse files Browse the repository at this point in the history
  • Loading branch information
galderz authored and Sanne committed May 23, 2012
1 parent 27be2a1 commit 4740b8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tree/src/main/java/org/infinispan/tree/Fqn.java
Expand Up @@ -115,7 +115,7 @@ private Fqn(Object... elements) {
*
* @param names List of names
*/
private Fqn(List<Object> names) {
private Fqn(List<?> names) {
if (names != null)
elements = names.toArray();
else
Expand Down

0 comments on commit 4740b8f

Please sign in to comment.