Remove duplicate Assert.

Closes #1187
This commit is contained in:
MatejNedic
2021-11-01 09:11:17 +01:00
committed by Mark Paluch
parent 7f7ed92875
commit 53668b5375

View File

@@ -294,7 +294,6 @@ public class StatementFactory {
Assert.notNull(tableName, "TableName must not be null");
Assert.notNull(objectToInsert, "Object to insert must not be null");
Assert.notNull(persistentEntity, "CassandraPersistentEntity must not be null");
Assert.notNull(tableName, "Table name must not be null");
boolean insertNulls;
if (options instanceof InsertOptions) {