Reformat builder pattern - issue #224

This commit is contained in:
Ankur Kaushal
2015-11-01 18:03:29 -05:00
parent e7b6542134
commit 3af06a3a3a
8 changed files with 179 additions and 181 deletions

View File

@ -2,7 +2,7 @@ package com.iluwatar.builder;
import org.junit.Test;
import com.iluwatar. builder.App;
import com.iluwatar.builder.App;
/**
*
@ -11,9 +11,9 @@ import com.iluwatar. builder.App;
*/
public class AppTest {
@Test
public void test() {
String[] args = {};
App.main(args);
}
@Test
public void test() {
String[] args = {};
App.main(args);
}
}