All the sources codespage 41
Java
        
            
             July 24, 2014 am31 01:18        
        #143
    
    
    	public static IStorage create(boolean storeInMemory) {
		if (storeInMemory) {
			return new MemoryStorage();
		} else {
			return new MemoryStorage();
		}
	}