The library doesn't detect violations in parameter types. If unsupported types are not used in the method body, no violations are reported. e.g:
public class Main {
private static String encode(Base64.Encoder encoder, byte[] value) {
throw new UnsupportedOperationException("Not implemented");
}
}
The library doesn't detect violations in parameter types. If unsupported types are not used in the method body, no violations are reported. e.g: