Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
bsorrentino committed Aug 25, 2017
1 parent ad7810c commit bedb6f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/bsc/processor/TypescriptProcessor.java
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ private String processClass( BeanInfo bi, java.util.Map<String, Class<?>> decla

private Observable<Class<?>> rxEnumerateDeclaredPackageAndClass( final Context processingContext ) {

final Observable<Class<?>> result = processingContext.rxElementFromAnnotations()
final Observable<Class<?>> result = processingContext.rxElementFromAnnotations()
.doOnNext((e) -> info( "Anotation [%s]", e.getKind().name()) )
.filter( (e) -> ElementKind.PACKAGE==e.getKind() || ElementKind.CLASS==e.getKind() )
.concatMap( (e) -> Observable.fromIterable(e.getAnnotationMirrors()) )
Expand Down

0 comments on commit bedb6f9

Please sign in to comment.