cleanup and reformat
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-09-05 00:06:35 +02:00
parent 14b54501fd
commit fd2970fa59
81 changed files with 1245 additions and 766 deletions

View File

@@ -20,11 +20,11 @@ public class RandomOrgSeedTask implements Runnable
@Override
public void run()
{
if(RandomUtil.isRandomOrgKeyValid())
if (RandomUtil.isRandomOrgKeyValid())
{
if(Cache.isVerbose()) LOGGER.info("Updating Random seed from random.org...");
if (Cache.isVerbose()) LOGGER.info("Updating Random seed from random.org...");
RandomUtil.initRandomOrg();
if(Cache.isVerbose()) LOGGER.info("Random.org seed updated!");
if (Cache.isVerbose()) LOGGER.info("Random.org seed updated!");
}
}
}
}