mirror of
https://github.com/tiennm99/lombok.git
synced 2026-08-01 14:22:11 +00:00
15 lines
252 B
Java
15 lines
252 B
Java
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();
|
|
}
|
|
} |