Allow matching on types from java.lang.*

This commit is contained in:
Roel Spilker
2012-03-19 23:16:33 +01:00
parent 6ca2a91d6b
commit b4fe2d4e25
+1
View File
@@ -48,6 +48,7 @@ public class TypeResolver {
Set<String> imports = new HashSet<String>();
if (packageString != null) imports.add(packageString + ".*");
imports.addAll(importStrings == null ? Collections.<String>emptySet() : importStrings);
imports.add("java.lang.*");
return imports;
}