On 2020-05-26, <[email protected]> wrote: > - public void addPaxHeader(String name,String value) { > - processPaxHeader(name,value); > + public void addPaxHeader(String name, String value) throws IOException { > + processPaxHeader(name, value);
no, we can't do that. Adding a checked exception to a public method breaks source compatibility. Stefan --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
