...
| Code Block |
|---|
// classic
args = new String[] { "a", "b" }
// JSR
String[] args = [ "a", "b" ]
def x = [1, 2, 3] as int[]
long[] y = x
|
...
...
| Code Block |
|---|
// classic
args = new String[] { "a", "b" }
// JSR
String[] args = [ "a", "b" ]
def x = [1, 2, 3] as int[]
long[] y = x
|
...