Skip to content
This repository was archived by the owner on Oct 28, 2025. It is now read-only.

Commit a789837

Browse files
committed
Formatting
1 parent 84bcc3f commit a789837

1 file changed

Lines changed: 0 additions & 5 deletions

File tree

src/main/java/com/thebluealliance/api/v3/requests/DataRequest.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ public class DataRequest {
2424
*/
2525
public DataRequest(String authKey) {
2626
AUTH_KEY = authKey;
27-
2827
}
2928

3029
/**
@@ -34,13 +33,11 @@ public DataRequest(String authKey) {
3433
* @return An {@link APIResponse} object with the API's response
3534
*/
3635
public APIResponse getDataTBA(String urlDirectory) throws IOException {
37-
3836
URL url;
3937
url = new URL(TBA_BASE_URL + urlDirectory);
4038
HttpURLConnection con = (HttpURLConnection) url.openConnection();
4139
con.addRequestProperty(HEADER_AUTH, AUTH_KEY);
4240
return getData(con);
43-
4441
}
4542

4643
private APIResponse getData(HttpURLConnection con) {
@@ -87,8 +84,6 @@ public APIResponse getDataTBA(String urlDirectory, String ifModifiedSince) throw
8784
con.addRequestProperty(HEADER_AUTH, AUTH_KEY);
8885
con.addRequestProperty(HEADER_MODIFIED, ifModifiedSince);
8986
return getData(con);
90-
91-
9287
}
9388

9489

0 commit comments

Comments
 (0)