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
"create method from usage" qualifies reference when creating method with the same...
[fedora-idea.git]
/
testData
/
refactoring
/
introduceParameter
/
beforeParameterJavaDocBeforeVararg.java
blob
ff576522f1359fb5ea67d2df65f192629c170472
1
class
C
{
2
/**
3
* @param s
4
*/
5
void
method
(
String
...
s
) {
6
System
.
out
.
println
(
s
[<
selection
>
0
</
selection
>]);
7
}
8
9
{
10
method
(
"a"
,
"b"
,
"c"
);
11
method
();
12
}
13
}