feature: remove User interface

This commit is contained in:
2019-08-01 01:36:08 +02:00
parent bb3b0d7e34
commit 528f2b6daa
2 changed files with 9 additions and 11 deletions

View File

@@ -7,7 +7,7 @@ import org.junit.jupiter.api.TestInstance
@TestInstance(TestInstance.Lifecycle.PER_CLASS)
class EntityTest() {
private class User(override var id: Int?): fr.postgresjson.entity.User<Int?>
private class User(override var id: Int?): EntityI<Int?>
private class ObjTest(var name: String): EntityExtended<Int?, User>()
@Test