Just formatting App classes to be like the other class files on the project
This commit is contained in:
		@@ -1,17 +1,16 @@
 | 
			
		||||
package com.iluwatar;
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * 
 | 
			
		||||
 * Flyweight (PotionFactory) is useful when there is plethora of
 | 
			
		||||
 * objects (Potion). It provides means to decrease resource usage
 | 
			
		||||
 * by sharing object instances.
 | 
			
		||||
 *
 | 
			
		||||
 * Flyweight (PotionFactory) is useful when there is plethora of objects
 | 
			
		||||
 * (Potion). It provides means to decrease resource usage by sharing object
 | 
			
		||||
 * instances.
 | 
			
		||||
 *
 | 
			
		||||
 */
 | 
			
		||||
public class App 
 | 
			
		||||
{
 | 
			
		||||
    public static void main( String[] args )
 | 
			
		||||
    {
 | 
			
		||||
    	AlchemistShop alchemistShop = new AlchemistShop();
 | 
			
		||||
    	alchemistShop.enumerate();
 | 
			
		||||
public class App {
 | 
			
		||||
 | 
			
		||||
    public static void main(String[] args) {
 | 
			
		||||
        AlchemistShop alchemistShop = new AlchemistShop();
 | 
			
		||||
        alchemistShop.enumerate();
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user