refactoring

This commit is contained in:
Miriam Baglioni 2023-11-27 15:13:15 +01:00
parent e3cce9a5a0
commit 8eb70e6657
4 changed files with 13 additions and 16 deletions

View File

@ -15,8 +15,6 @@ import org.jetbrains.annotations.NotNull;
*/
public class QueryCommunityAPI {
private static String get(String geturl) throws IOException {
URL url = new URL(geturl);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
@ -48,7 +46,6 @@ public class QueryCommunityAPI {
return get(baseURL + id + "/contentproviders");
}
public static String communityPropagationOrganization(String id, String baseURL) throws IOException {