HHH-11131 - Fixed class javadoc and removed unused imports.

This commit is contained in:
Chris Cranford 2016-09-28 11:24:28 -04:00 committed by Andrea Boriero
parent f66031fa53
commit 555aa772a3
1 changed files with 4 additions and 2 deletions

View File

@ -14,7 +14,6 @@ import javax.persistence.EntityManager;
import org.hibernate.cfg.AvailableSettings;
import org.hibernate.dialect.Oracle8iDialect;
import org.hibernate.envers.configuration.EnversSettings;
import org.hibernate.envers.test.BaseEnversJPAFunctionalTestCase;
import org.hibernate.envers.test.entities.StrTestEntity;
import org.hibernate.testing.TestForIssue;
@ -25,7 +24,10 @@ import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
/**
* Test verifies that the sequence is created properly both for database operations and
* Test verifies that the sequence is created properly both for database operations and export
* scripts and that a basic entity using said sequence can be persisted and fetched via the
* audit reader.
*
* @author Chris Cranford
*/
@TestForIssue(jiraKey = "HHH-11131")