Source: igv
Version: 2.12.3+dfsg-1
Severity: important
Tags: ftbfs sid bookworm
User: [email protected]
Usertags: default-java17
igv fails to build with OpenJDK 17, it invokes the constructor of
java.net.URLDecoder
that was made private:
/<<PKGBUILDDIR>>/src/main/java/org/broad/igv/google/OAuthProvider.java:202:
error: URLDecoder() has private access in URLDecoder
params.put("redirect_uri", new URLDecoder().decode(redirect,
"utf-8"));
^
The decode() method is static and can be invoked directly without instantiating
the class.