typo in "APIParser"
This commit is contained in:
parent
a0b0ca53ac
commit
540bb7b778
@ -15,9 +15,9 @@ import org.apache.http.impl.client.HttpClientBuilder;
|
|||||||
import org.apache.http.util.EntityUtils;
|
import org.apache.http.util.EntityUtils;
|
||||||
import org.json.simple.parser.ParseException;
|
import org.json.simple.parser.ParseException;
|
||||||
|
|
||||||
public class APIPaser {
|
public class APIParser {
|
||||||
String url;
|
String url;
|
||||||
public APIPaser(String urlString) throws MalformedURLException {
|
public APIParser(String urlString) throws MalformedURLException {
|
||||||
this.url = urlString;
|
this.url = urlString;
|
||||||
}
|
}
|
||||||
public JSONArray getJSONObject() throws IOException, ParseException {
|
public JSONArray getJSONObject() throws IOException, ParseException {
|
@ -4,7 +4,6 @@ import org.json.simple.JSONArray;
|
|||||||
import org.json.simple.JSONObject;
|
import org.json.simple.JSONObject;
|
||||||
import org.json.simple.parser.ParseException;
|
import org.json.simple.parser.ParseException;
|
||||||
|
|
||||||
import javax.security.auth.callback.Callback;
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.net.MalformedURLException;
|
import java.net.MalformedURLException;
|
||||||
import java.util.concurrent.Executors;
|
import java.util.concurrent.Executors;
|
||||||
@ -14,12 +13,12 @@ import java.util.concurrent.TimeUnit;
|
|||||||
public class DataStoreBot {
|
public class DataStoreBot {
|
||||||
String storePath;
|
String storePath;
|
||||||
String apiURL;
|
String apiURL;
|
||||||
APIPaser api;
|
APIParser api;
|
||||||
DataStore store;
|
DataStore store;
|
||||||
DataStoreBot(String storePath, String apiURL) throws MalformedURLException {
|
DataStoreBot(String storePath, String apiURL) throws MalformedURLException {
|
||||||
this.storePath = storePath;
|
this.storePath = storePath;
|
||||||
this.apiURL = apiURL;
|
this.apiURL = apiURL;
|
||||||
this.api = new APIPaser(this.apiURL);
|
this.api = new APIParser(this.apiURL);
|
||||||
this.store = new DataStore();
|
this.store = new DataStore();
|
||||||
}
|
}
|
||||||
public void setInterval(int seconds) {
|
public void setInterval(int seconds) {
|
||||||
|
Loading…
Reference in New Issue
Block a user