Apply code cleanup rules to projects
Apply automated cleanup rules to add `@Override` and `@Deprecated` annotations and to fix class references used with static methods. Issue gh-8945
This commit is contained in:
@@ -133,10 +133,12 @@ public class BouncyCastleAesBytesEncryptorEquivalencyTests {
|
||||
this.keyLength = keyLength;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getKeyLength() {
|
||||
return this.keyLength;
|
||||
}
|
||||
|
||||
@Override
|
||||
public byte[] generateKey() {
|
||||
byte[] bytes = new byte[this.keyLength];
|
||||
this.random.nextBytes(bytes);
|
||||
|
||||
Reference in New Issue
Block a user