Remove unused disconnect

This commit is contained in:
GregTCLTK 2020-02-04 15:01:16 +01:00
parent 79d5d67b55
commit 214b84d0c5
No known key found for this signature in database
GPG key ID: A91BADE5C070FF67

View file

@ -51,11 +51,6 @@ public class Rethink {
}
}
public void disconnect() {
conn.close();
System.out.println("DISCONNECTED");
}
private JSONArray getAsArray(String table, String where, String value) {
try {
String string = r.table(table).filter(row -> row.g(where.toLowerCase()).eq(value)).coerceTo("array").toJson().run(conn);