Update dependencies

This also updates the test dependencies to an alpha version. We have to
use a pre-stable version, because these include some fixes for running
on API 33.
This commit is contained in:
Alexander Bakker 2022-09-14 18:04:58 +02:00
parent e19ceb0761
commit 3ec6e35011
3 changed files with 14 additions and 17 deletions

View file

@ -148,7 +148,6 @@ public class IconPack {
return IconType.fromFilename(_relFilename);
}
@SuppressWarnings("UnstableApiUsage")
public String getName() {
return Files.getNameWithoutExtension(new File(_relFilename).getName());
}

View file

@ -23,7 +23,6 @@ public enum IconType {
}
}
@SuppressWarnings("UnstableApiUsage")
public static IconType fromFilename(String filename) {
switch (Files.getFileExtension(filename).toLowerCase(Locale.ROOT)) {
case "svg":