Minor code formatter settings.

This commit is contained in:
mobius
2015-02-09 00:36:25 +00:00
parent 012eb3ed65
commit 855feff6f6
20 changed files with 45 additions and 30 deletions

View File

@ -203,7 +203,8 @@ public final class TaskManager
public void registerTask(Task task)
{
int key = task.getName().hashCode();
_tasks.computeIfAbsent(key, k -> {
_tasks.computeIfAbsent(key, k ->
{
task.initializate();
return task;
});