mirror of
https://github.com/corda/corda.git
synced 2025-06-13 04:38:19 +00:00
add missing classpath methods
This commit is contained in:
@ -42,6 +42,10 @@ public class Arrays {
|
||||
return array[index];
|
||||
}
|
||||
|
||||
public T set(int index, T value) {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
public <S> S[] toArray(S[] a) {
|
||||
return (S[])array;
|
||||
}
|
||||
|
Reference in New Issue
Block a user