Skip to content

Commit dae67be

Browse files
committed
ApResolver: Make getUrls static
1 parent 704ca19 commit dae67be

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/src/main/java/xyz/gianlu/librespot/core/ApResolver.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public void refreshPool() throws IOException {
6262
}
6363

6464
@NotNull
65-
private List<String> getUrls(@NotNull JsonObject body, @NotNull String type) {
65+
private static List<String> getUrls(@NotNull JsonObject body, @NotNull String type) {
6666
JsonArray aps = body.getAsJsonArray(type);
6767
List<String> list = new ArrayList<>(aps.size());
6868
for (JsonElement ap : aps) list.add(ap.getAsString());

0 commit comments

Comments
 (0)