mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-27 22:26:17 +00:00
11 lines
157 B
Java
11 lines
157 B
Java
import lombok.val;
|
|
|
|
public class ValWithLabel {
|
|
{
|
|
LABEL: for (val x : new String[0]) {
|
|
if (x.toLowerCase() == null) {
|
|
continue LABEL;
|
|
}
|
|
}
|
|
}
|
|
} |