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
name for Switcher action
[fedora-idea.git]
/
testData
/
refactoring
/
inlineParameter
/
RefFinalLocal.java.after
blob
672809fc125ee48e6365453774752de7d7f29915
1
public class A {
2
void test(String s1) {
3
final String s2 = s1;
4
System.out.println(s1);
5
System.out.println(s2);
6
}
7
8
void callTest() {
9
String s = "";
10
test(s);
11
}
12
}