Remove printing of '\b'

- Causes problems in some consoles.
This commit is contained in:
HeshamTB 2020-11-23 01:29:23 +03:00
parent ee94355f42
commit 4ab5b750b8
Signed by: Hesham
GPG Key ID: 74876157D199B09E

View File

@ -88,7 +88,7 @@ public class MakkahCity {
}
//noise based on time of day (From PDate)
firstDayTimeMan.step(Calendar.MINUTE, 1);
for (int i = 0; i < 46; i++) System.out.print("\b");
//for (int i = 0; i < 46; i++) System.out.print("\b");
}
//TODO make report
currenttimeManager = lastDayTimeMan;
@ -145,7 +145,7 @@ public class MakkahCity {
}
//noise based on time of day (From PDate)
lastDayTimeMan.step(Calendar.MINUTE, 1);
for (int i = 0; i < 46; i++) System.out.print("\b");
//for (int i = 0; i < 46; i++) System.out.print("\b");
}
//TODO: print final report
}