Fork of the Fernflower decompiler
fernflower/testData/results/TestSwitchOnStrings.dec

13 lines
197 B

package pkg;
public class TestSwitchOnStrings {
public int testSOE(String s) {
switch (s) {
case "xxx":
return 2;
case "yyy":
return 1;
}
return 0;
}
}