Skip to content

Commit fa3dec8

Browse files
authored
Update Utilidades.java
1 parent 4005059 commit fa3dec8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Colmena/Utilidades.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public static void animacionBusqueda() {
7575
for (String frame : frames) {
7676
System.out.print("\r" + frame); // Imprimimos el cuadro de animación
7777
try {
78-
TimeUnit.MILLISECONDS.sleep(300); // Espera constante de 300 ms
78+
Thread.sleep(300) // Espera constante de 300 ms
7979
} catch (InterruptedException ignored) {}
8080
}
8181
}

0 commit comments

Comments
 (0)