HHH-2394 Derive table name from correct filter (fixed typo)

This commit is contained in:
Rob Worsnop 2012-05-20 23:26:16 -04:00 committed by Strong Liu
parent ee01d80677
commit 63f2639101
1 changed files with 1 additions and 1 deletions

View File

@ -823,7 +823,7 @@ public abstract class CollectionBinder {
collection.addManyToManyFilter( filter.name(), getTableName(simpleFilter), getCondition( filter ) );
}
else {
collection.addFilter( filter.name(), getTableName(simpleFilter), getCondition( filter ) );
collection.addFilter( filter.name(), getTableName(filter), getCondition( filter ) );
}
}
}