Compiles again.
This commit is contained in:
@@ -1091,7 +1091,7 @@ public abstract class AEBaseContainer extends Container
|
||||
{
|
||||
if( name.hasCustomInventoryName() )
|
||||
{
|
||||
this.setCustomName( name.getCustomInventoryName() );
|
||||
this.setCustomName( name.getCustomInventoryName().getString() );
|
||||
}
|
||||
|
||||
if( this.getCustomName() != null )
|
||||
|
||||
@@ -114,7 +114,7 @@ public class ContainerCraftConfirm extends AEBaseContainer
|
||||
}
|
||||
else
|
||||
{
|
||||
this.setName( this.cpus.get( this.getSelectedCpu() ).getName() );
|
||||
this.setName( this.cpus.get( this.getSelectedCpu() ).getName().getString() );
|
||||
this.setCpuAvailableBytes( this.cpus.get( this.getSelectedCpu() ).getSize() );
|
||||
this.setCpuCoProcessors( this.cpus.get( this.getSelectedCpu() ).getProcessors() );
|
||||
}
|
||||
@@ -306,7 +306,7 @@ public class ContainerCraftConfirm extends AEBaseContainer
|
||||
}
|
||||
else if( this.getSelectedCpu() != -1 )
|
||||
{
|
||||
this.setName( this.cpus.get( this.getSelectedCpu() ).getName() );
|
||||
this.setName( this.cpus.get( this.getSelectedCpu() ).getName().getString() );
|
||||
this.setCpuAvailableBytes( this.cpus.get( this.getSelectedCpu() ).getSize() );
|
||||
this.setCpuCoProcessors( this.cpus.get( this.getSelectedCpu() ).getProcessors() );
|
||||
}
|
||||
|
||||
@@ -121,7 +121,7 @@ public class ContainerCraftingStatus extends ContainerCraftingCPU
|
||||
}
|
||||
else if( this.selectedCpu != -1 )
|
||||
{
|
||||
this.myName = this.cpus.get( this.selectedCpu ).getName();
|
||||
this.myName = this.cpus.get( this.selectedCpu ).getName().getString();
|
||||
}
|
||||
|
||||
if( this.selectedCpu == -1 && this.cpus.size() > 0 )
|
||||
@@ -174,7 +174,7 @@ public class ContainerCraftingStatus extends ContainerCraftingCPU
|
||||
}
|
||||
else
|
||||
{
|
||||
this.myName = this.cpus.get( this.selectedCpu ).getName();
|
||||
this.myName = this.cpus.get( this.selectedCpu ).getName().getString();
|
||||
this.setCPU( this.cpus.get( this.selectedCpu ).getCpu() );
|
||||
}
|
||||
}
|
||||
|
||||
@@ -329,7 +329,7 @@ public final class ContainerInterfaceTerminal extends AEBaseContainer
|
||||
final DualityInterface dual = ih.getInterfaceDuality();
|
||||
if( gn.isActive() && dual.getConfigManager().getSetting( Settings.INTERFACE_TERMINAL ) == YesNo.YES )
|
||||
{
|
||||
this.diList.put( ih, new InvTracker( dual, dual.getPatterns(), dual.getTermName() ) );
|
||||
this.diList.put( ih, new InvTracker( dual, dual.getPatterns(), dual.getTermName().getString() ) );
|
||||
}
|
||||
}
|
||||
|
||||
@@ -339,7 +339,7 @@ public final class ContainerInterfaceTerminal extends AEBaseContainer
|
||||
final DualityInterface dual = ih.getInterfaceDuality();
|
||||
if( gn.isActive() && dual.getConfigManager().getSetting( Settings.INTERFACE_TERMINAL ) == YesNo.YES )
|
||||
{
|
||||
this.diList.put( ih, new InvTracker( dual, dual.getPatterns(), dual.getTermName() ) );
|
||||
this.diList.put( ih, new InvTracker( dual, dual.getPatterns(), dual.getTermName().getString() ) );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user