We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4005059 commit fa3dec8Copy full SHA for fa3dec8
src/Colmena/Utilidades.java
@@ -75,7 +75,7 @@ public static void animacionBusqueda() {
75
for (String frame : frames) {
76
System.out.print("\r" + frame); // Imprimimos el cuadro de animación
77
try {
78
- TimeUnit.MILLISECONDS.sleep(300); // Espera constante de 300 ms
+ Thread.sleep(300) // Espera constante de 300 ms
79
} catch (InterruptedException ignored) {}
80
}
81
0 commit comments