repo.or.cz
/
fedora-idea.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
IDEADEV-25972
[fedora-idea.git]
/
testData
/
refactoring
/
inlineLocal
/
IDEADEV13151.java.after
blob
4cbf4b67339d4614ab6a32089f09789d4130d3a0
1
class Tester {
2
void method(String x, String... y) {
3
}
4
5
void method1(String x, String[] y) {
6
}
7
8
void caller() {
9
method("", "a", "b");
10
method1("", new String[]{"a", "b"});
11
}
12
}