nord vpnnord vpn
Ad

Untitled

mail@pastecode.io avatar
unknown
java
7 months ago
181 B
3
Indexable
Never
if(!list.isEmpty(){
	processItems(list);
}
////////////////////////////
if(isNotEmpty(list){
	processItems(list);
}
private boolean isNotEmpty(List list){
	return !list.isEmpty();
}

nord vpnnord vpn
Ad