v1.3.4 #426

Merged
greg6775 merged 2 commits from greg-dev into master 2020-03-31 16:32:13 +02:00
Showing only changes of commit 69623072da - Show all commits

View file

@ -78,7 +78,6 @@ public class Rethink {
public JSONObject getObjectByID(String table, String id) { public JSONObject getObjectByID(String table, String id) {
String response = r.table(table).get(id).toJson().run(conn); String response = r.table(table).get(id).toJson().run(conn);
System.out.println(response);
return new JSONObject(response); return new JSONObject(response);
} }