Just formatting App classes to be like the other class files on the project

This commit is contained in:
Matthew
2014-10-07 16:23:37 +01:00
parent 52f0923df9
commit bde5b343d0
24 changed files with 466 additions and 508 deletions

View File

@ -1,18 +1,16 @@
package com.iluwatar;
/**
*
* Facade (DwarvenGoldmineFacade) provides simpler interface to
* subsystem.
*
* Facade (DwarvenGoldmineFacade) provides simpler interface to subsystem.
*
*/
public class App
{
public static void main( String[] args )
{
DwarvenGoldmineFacade facade = new DwarvenGoldmineFacade();
facade.startNewDay();
facade.digOutGold();
facade.endDay();
public class App {
public static void main(String[] args) {
DwarvenGoldmineFacade facade = new DwarvenGoldmineFacade();
facade.startNewDay();
facade.digOutGold();
facade.endDay();
}
}