HHH-8106 Fixed bug with Enhancement Task

This commit is contained in:
JohnOhara 2013-06-07 11:37:47 +01:00 committed by Brett Meyer
parent 34ef043223
commit d9870fffb8
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ public class EnhancementTask extends Task implements EnhancementContext {
private boolean shouldInclude(CtClass ctClass) { private boolean shouldInclude(CtClass ctClass) {
// we currently only handle entity enhancement // we currently only handle entity enhancement
return ! ctClass.hasAnnotation( Entity.class ); return ctClass.hasAnnotation( Entity.class );
} }