Remove @NotNull annotation that was imported from com.sun.istack.iternal which triggers a compilation failure on OpenJDK

This commit is contained in:
Vlad Mihalcea 2016-03-14 17:53:00 +02:00
parent 5b61df9591
commit ec4f20a5fb
1 changed files with 0 additions and 3 deletions

View File

@ -26,8 +26,6 @@ import org.hibernate.testing.TestForIssue;
import org.hibernate.testing.junit4.BaseNonConfigCoreFunctionalTestCase;
import org.junit.Test;
import com.sun.istack.internal.NotNull;
import static org.junit.Assert.assertEquals;
/**
@ -94,7 +92,6 @@ public class InheritanceManyToManyForeignKeyTest extends BaseNonConfigCoreFuncti
@GeneratedValue
private Long id;
@NotNull
@Column(name = "START_DATE", nullable = false)
private LocalDate startDate;
}