Salesforce Apex: come uscire da un metodo, da
public void doNothing() { return; }
You can create any type of product documentation with Docy
Class{
Boolean breakhere = false;
for(....1st loop){
for(.... 2nd loop){
// I have some condition that should break out of the 2nd for loop and continue with the 1st for loop
if(...){
isPresent = true;
break;
}
}//End of 2nd for loop
}// end of first for loop
}