diff --git a/src/main/java/com/aerospike/jdbc/model/SchemaTableName.java b/src/main/java/com/aerospike/jdbc/model/SchemaTableName.java deleted file mode 100644 index 7b5e6fa..0000000 --- a/src/main/java/com/aerospike/jdbc/model/SchemaTableName.java +++ /dev/null @@ -1,41 +0,0 @@ -package com.aerospike.jdbc.model; - -import java.util.Objects; - -public class SchemaTableName { - - private final String schemaName; - private final String tableName; - - public SchemaTableName(String schemaName, String tableName) { - this.schemaName = schemaName; - this.tableName = tableName; - } - - public String getSchemaName() { - return schemaName; - } - - public String getTableName() { - return tableName; - } - - @Override - public boolean equals(Object o) { - if (this == o) return true; - if (o == null || getClass() != o.getClass()) return false; - SchemaTableName that = (SchemaTableName) o; - return Objects.equals(schemaName, that.schemaName) && - Objects.equals(tableName, that.tableName); - } - - @Override - public int hashCode() { - return Objects.hash(schemaName, tableName); - } - - @Override - public String toString() { - return String.format("%s(%s, %s)", getClass().getSimpleName(), schemaName, tableName); - } -}