Replaced all instances of Guava's Optional type with Java 8's Optional type, as discussed in #81. (#90)

This commit is contained in:
shartte
2016-08-24 19:06:10 +02:00
committed by Sebastian Hartte
parent c2a239a12f
commit e276aa682f
65 changed files with 306 additions and 468 deletions
@@ -19,10 +19,9 @@
package appeng.recipes.game;
import java.util.Optional;
import javax.annotation.Nullable;
import com.google.common.base.Optional;
import net.minecraft.inventory.IInventory;
import net.minecraft.inventory.InventoryCrafting;
import net.minecraft.item.Item;
@@ -63,7 +62,7 @@ public final class FacadeRecipe implements IRecipe
{
if( this.anchor.isSameAs( inv.getStackInSlot( 1 ) ) && this.anchor.isSameAs( inv.getStackInSlot( 3 ) ) && this.anchor.isSameAs( inv.getStackInSlot( 5 ) ) && this.anchor.isSameAs( inv.getStackInSlot( 7 ) ) )
{
for( final Item facadeItemDefinition : this.maybeFacade.asSet() )
return this.maybeFacade.map( facadeItemDefinition ->
{
final ItemFacade facade = (ItemFacade) facadeItemDefinition;
@@ -73,7 +72,7 @@ public final class FacadeRecipe implements IRecipe
facades.stackSize = 4;
}
return facades;
}
} ).orElse( null );
}
}