Ver Mensaje Individual
  #2 (permalink)  
Antiguo 04/02/2019, 03:38
Avatar de Fuzzylog
Fuzzylog
 
Fecha de Ingreso: agosto-2008
Ubicación: En internet
Mensajes: 2.511
Antigüedad: 15 años, 8 meses
Puntos: 188
Respuesta: Problema NoSuchElementException

var nextElement= null;
while (itr.hasNext()) {
nextElement = itr.next(); // Cada vez que ejecutas esta acción estás accediendo al elemento siguiente => Ejecutar una sóla vez en cada iteración
// Sustituir el resto de itr.next por nextElement para que te funcione
}
__________________
if (fuzzy && smooth) {
fuzzylog = "c00l";
return true;
}