Skip to content

Commit

Permalink
Update xbean version used.
Browse files Browse the repository at this point in the history
  • Loading branch information
chirino committed Apr 21, 2015
1 parent 354e277 commit e1da91a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hawtjni-generator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<dependency>
<artifactId>xbean-finder</artifactId>
<groupId>org.apache.xbean</groupId>
<version>3.18</version>
<version>4.2</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ private void pw(String message, int indent) {

@SuppressWarnings("unchecked")
private void collectMatchingClasses(ClassFinder finder, Class annotation, LinkedHashSet<Class<?>> collector) {
List<Class> annotated = finder.findAnnotatedClasses(annotation);
List<Class<?>> annotated = finder.findAnnotatedClasses(annotation);
for (Class<?> clazz : annotated) {
if( packages.isEmpty() ) {
collector.add(clazz);
Expand Down

0 comments on commit e1da91a

Please sign in to comment.