Skip to content

Commit b5ccd1d

Browse files
committed
removed deprecated constructor
1 parent 7483daf commit b5ccd1d

1 file changed

Lines changed: 0 additions & 7 deletions

File tree

core/src/main/kotlin/org/evomaster/core/search/gene/sql/SqlForeignKeyGene.kt

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,6 @@ class SqlForeignKeyGene(
5555

5656
) : SqlWrapperGene, SimpleGene(sourceColumn) {
5757

58-
@Deprecated("Rather use the one forcing TableId")
59-
constructor(sourceColumn: String, uniqueId: Long, targetTable: String, nullable: Boolean, uniqueIdOfPrimaryKey: Long =-1)
60-
: this(sourceColumn, uniqueId, TableId(targetTable), "UNKNOWN_COLUMN", nullable, uniqueIdOfPrimaryKey)
61-
62-
constructor(sourceColumn: String, uniqueId: Long, targetTable: TableId, nullable: Boolean, uniqueIdOfPrimaryKey: Long =-1)
63-
: this(sourceColumn, uniqueId, targetTable, "UNKNOWN_COLUMN", nullable, uniqueIdOfPrimaryKey)
64-
6558
init {
6659
if (uniqueId < 0) {
6760
throw IllegalArgumentException("Negative unique id")

0 commit comments

Comments
 (0)