Check Style fixes #334

This commit is contained in:
Joseph McCarthy 2016-01-02 00:54:26 +00:00
parent ca4a4ec07b
commit e25ef1b0f8

View File

@ -11,7 +11,7 @@ public class LambdasApp {
/**
* Program entry point
*/
public static void main(String[] args){
public static void main(String[] args) {
Task task = new SimpleTask();
Callback c = () -> System.out.println("I'm done now.");
task.executeWith(c);