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

View File

@ -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 );
}