Values being OR'd with themselves in test cases.

Issue #218 closed
Dave Mercer created an issue

There are 6 incidences of new KeyUsage instances being created in your test cases where KeyUsage.nonRepudiation is OR'd with its self. This breaks some compiler setups where code styles are strictly enforced.

example:

KeyUsage keyUsage = new KeyUsage(KeyUsage.nonRepudiation | KeyUsage.nonRepudiation);

The attached image shows the files and lines where this is happening.

Comments (4)

  1. Log in to comment