projects
/
idea
/
community.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
move member: restore qualifier in switch labels for non-enum constants (IDEA-147539)
[idea/community.git]
/
java
/
java-tests
/
testData
/
refactoring
/
moveMembers
/
stringConstantInSwitchLabelExpression
/
after
/
B.java
1
public class B {
2
3
public static final String FOO = "FOO";
4
}
5
6
class U {
7
public void example(String foo) {
8
switch (foo) {
9
case B.FOO:
10
break;
11
}
12
}
13
}