You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 text was updated successfully, but these errors were encountered:
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:
The text was updated successfully, but these errors were encountered: