Skip to content

Commit

Permalink
HHH-8106 Fixed bug with Enhancement Task
Browse files Browse the repository at this point in the history
  • Loading branch information
johnaohara authored and brmeyer committed Jul 3, 2013
1 parent 504f430 commit 750903f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ private void processClassFile(File javaClassFile) {

private boolean shouldInclude(CtClass ctClass) {
// we currently only handle entity enhancement
return ! ctClass.hasAnnotation( Entity.class );
return ctClass.hasAnnotation( Entity.class );
}


Expand Down

0 comments on commit 750903f

Please sign in to comment.