blob: 0ce2be35e2ef21b418746d5ef45e5506b3cc8935 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import lombok.val;
public class ValWithLabel {
{
LABEL: for (final @val java.lang.String x : new String[0])
{
if ((x.toLowerCase() == null))
{
continue LABEL;
}
}
}
public ValWithLabel() {
super();
}
}
|