Remove console message

This commit is contained in:
extendedclip 2020-03-10 12:26:22 -04:00
parent 3f9562b15d
commit 3b90fb07ca

View File

@ -39,11 +39,9 @@ public class GithubScriptManager {
@Override @Override
public void run() { public void run() {
String json = getContents(MASTER_LIST_URL); String json = getContents(MASTER_LIST_URL);
if (json.isEmpty()) { if (json.isEmpty()) {
return; return;
} }
System.out.println(json);
availableScripts = GSON.fromJson(json, new TypeToken<ArrayList<GithubScript>>() { availableScripts = GSON.fromJson(json, new TypeToken<ArrayList<GithubScript>>() {
}.getType()); }.getType());
} }