Fix output
This commit is contained in:
parent
4a4a935b9d
commit
600378d361
@ -210,9 +210,10 @@ public class Main
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
_totalCompleted++;
|
||||||
_info.createNewFile();
|
_info.createNewFile();
|
||||||
Files.write(String.valueOf(_totalCompleted + 1).getBytes(), _info);
|
Files.write(String.valueOf(_totalCompleted).getBytes(), _info);
|
||||||
System.out.println("[INFO] Completed group " + _totalCompleted++ + " of 10000 in " + timeTaken + " milliseconds");
|
System.out.println("[INFO] Completed group " + _totalCompleted + " of 10000 in " + timeTaken + " milliseconds");
|
||||||
}
|
}
|
||||||
catch (IOException e)
|
catch (IOException e)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user