Equivalent Exchange 3

Equivalent Exchange 3

2M Downloads

Compiling in 1.6.4

lluixhi opened this issue ยท 2 comments

commented

I finally got around to setting up the build environment again, but it failed :(

The environment is working but..

[exec] == ERRORS FOUND in JAVA CODE ==
[exec]
[exec] /home/adb/git/MC/forge/mcp/src/minecraft/net/minecraftforge/liquids/IBlockLiquid.java:12: warning: [deprecation] ILiquid in net.minecraftforge.liquids has been deprecated
[exec] public interface IBlockLiquid extends ILiquid {
[exec] ^
[exec]
[exec] /home/adb/git/MC/forge/mcp/src/minecraft/net/minecraftforge/liquids/LiquidTank.java:10: warning: [deprecation] ILiquidTank in net.minecraftforge.liquids has been deprecated
[exec] public class LiquidTank implements ILiquidTank {
[exec] ^
[exec]
[exec] /home/adb/git/MC/forge/mcp/src/minecraft/cpw/mods/fml/common/registry/GameRegistry.java:60: warning: [deprecation] Block in Mod has been deprecated
[exec] import cpw.mods.fml.common.Mod.Block;
[exec] ^
[exec]
[exec] /home/adb/git/MC/forge/mcp/src/minecraft/com/pahimar/ee3/EquivalentExchange3.java:31: error: cannot find symbol
[exec] import com.pahimar.ee3.emc.graph.DepthFirstSearchTraversal;
[exec] ^
[exec]
[exec] symbol: class DepthFirstSearchTraversal
[exec] location: package com.pahimar.ee3.emc.graph
[exec] /home/adb/git/MC/forge/mcp/src/minecraft/net/minecraft/util/ChatMessageComponent.java:270: warning: non-varargs call of varargs method with inexact argument type for last parameter;
[exec] stringbuilder.append(StatCollector.translateToLocalFormatted(this.translationKey, astring));
[exec] ^
[exec]
[exec] cast to Object for a varargs call
[exec] cast to Object[] for a non-varargs call and to suppress this warning
[exec] /home/adb/git/MC/forge/mcp/src/minecraft/net/minecraft/entity/Entity.java:1202: warning: [deprecation] getFilledPercentage(World,int,int,int) in Block has been deprecated
[exec] double filled = block.getFilledPercentage(worldObj, i, j, k);
[exec] ^
[exec]
[exec] /home/adb/git/MC/forge/mcp/src/minecraft/net/minecraft/item/ItemPotion.java:394: warning: [deprecation] hasEffect(ItemStack) in Item has been deprecated
[exec] public boolean hasEffect(ItemStack par1ItemStack)
[exec] ^
[exec]
[exec] /home/adb/git/MC/forge/mcp/src/minecraft/net/minecraft/item/ItemEnchantedBook.java:23: warning: [deprecation] hasEffect(ItemStack) in Item has been deprecated
[exec] public boolean hasEffect(ItemStack par1ItemStack)
[exec] ^
[exec]
[exec] /home/adb/git/MC/forge/mcp/src/minecraft/net/minecraft/item/ItemEditableBook.java:91: warning: [deprecation] hasEffect(ItemStack) in Item has been deprecated
[exec] public boolean hasEffect(ItemStack par1ItemStack)
[exec] ^
[exec]
[exec] /home/adb/git/MC/forge/mcp/src/minecraft/net/minecraft/item/ItemSimpleFoiled.java:14: warning: [deprecation] hasEffect(ItemStack) in Item has been deprecated
[exec] public boolean hasEffect(ItemStack par1ItemStack)
[exec] ^
[exec]
[exec] /home/adb/git/MC/forge/mcp/src/minecraft/net/minecraft/item/ItemAppleGold.java:21: warning: [deprecation] hasEffect(ItemStack) in Item has been deprecated
[exec] public boolean hasEffect(ItemStack par1ItemStack)
[exec] ^
[exec]
[exec] /home/adb/git/MC/forge/mcp/src/minecraft/net/minecraft/item/ItemExpBottle.java:19: warning: [deprecation] hasEffect(ItemStack) in Item has been deprecated
[exec] public boolean hasEffect(ItemStack par1ItemStack)
[exec] ^
[exec]
[exec] /home/adb/git/MC/forge/mcp/src/minecraft/net/minecraftforge/classloading/FMLForgePlugin.java:14: warning: [deprecation] getLibraryRequestClass() in IFMLLoadingPlugin has been deprecated
[exec] public String[] getLibraryRequestClass()
[exec] ^
[exec]
[exec] /home/adb/git/MC/forge/mcp/src/minecraft/net/minecraftforge/fluids/BlockFluidBase.java:456: warning: [deprecation] getFilledPercentage(World,int,int,int) in Block has been deprecated
[exec] public float getFilledPercentage(World world, int x, int y, int z)
[exec] ^
[exec]
[exec] /home/adb/git/MC/forge/mcp/src/minecraft/cpw/mods/fml/relauncher/FMLCorePlugin.java:21: warning: [deprecation] getLibraryRequestClass() in IFMLLoadingPlugin has been deprecated
[exec] public String[] getLibraryRequestClass()
[exec] ^
[exec]
[exec] /home/adb/git/MC/forge/mcp/src/minecraft/cpw/mods/fml/common/registry/GameRegistry.java:114: warning: [deprecation] Block in Mod has been deprecated
[exec] public static Object buildBlock(ModContainer container, Class<?> type, Block annotation) throws Exception
[exec] ^
[exec]
[exec] /home/adb/git/MC/forge/mcp/src/minecraft/com/pahimar/ee3/EquivalentExchange3.java:183: error: cannot find symbol
[exec] DepthFirstSearchTraversal.executeDFS(dynEMC.graph, new CustomWrappedStack(new EnergyStack(EnergyStack.VANILLA_SMELTING_ENERGY_NAME, 1)));
[exec] ^
[exec]
[exec] symbol: variable DepthFirstSearchTraversal
[exec] location: class EquivalentExchange3
[exec] /home/adb/git/MC/forge/mcp/src/minecraft/com/pahimar/ee3/emc/DynEMC.java:114: error: cannot find symbol
[exec] LogHelper.debug("Crafting Output: " + node + ", Crafting Input: " + edge.target + ", Weight: " + edge.weight);
[exec] ^
[exec]
[exec] symbol: variable target
[exec] location: variable edge of type WeightedEdge
[exec] /home/adb/git/MC/forge/mcp/src/minecraft/com/pahimar/ee3/emc/DynEMC.java:125: error: cannot find symbol
[exec] LogHelper.debug("Crafting Input: " + node + ", Crafting Output: " + edge.target + ", Weight: " + edge.weight);
[exec] ^
[exec]
[exec] symbol: variable target
[exec] location: variable edge of type WeightedEdge
[exec] /home/adb/git/MC/forge/mcp/src/minecraft/com/pahimar/ee3/emc/graph/WeightedDirectedGraph.java:67: error: cannot find symbol
[exec] if (edgeIterator.next().target.equals(to)) {
[exec] ^
[exec]
[exec] symbol: variable target
[exec] location: class WeightedEdge
[exec] where T is a type-variable:
[exec] T extends Comparable declared in class WeightedDirectedGraph
[exec] /home/adb/git/MC/forge/mcp/src/minecraft/com/pahimar/ee3/emc/graph/WeightedDirectedGraph.java:122: error: cannot find symbol
[exec] if (edgeFromGraphNode.target.equals(targetNode)) {
[exec] ^
[exec]
[exec] symbol: variable target
[exec] location: variable edgeFromGraphNode of type WeightedEdge
[exec] where T is a type-variable:
[exec] T extends Comparable declared in class WeightedDirectedGraph
[exec] /home/adb/git/MC/forge/mcp/src/minecraft/com/pahimar/ee3/emc/graph/WeightedDirectedGraph.java:168: error: incompatible types
[exec] for (T graphNode : graph.keySet()) {
[exec] ^
[exec]
[exec] required: T
[exec] found: Node
[exec] where T is a type-variable:
[exec] T extends Comparable declared in class WeightedDirectedGraph
[exec] /home/adb/git/MC/forge/mcp/src/minecraft/com/pahimar/ee3/emc/graph/WeightedDirectedGraph.java:173: error: cannot find symbol
[exec] if (edgeFromGraphNode.target.equals(targetNode)) {
[exec] ^
[exec]
[exec] symbol: variable target
[exec] location: variable edgeFromGraphNode of type WeightedEdge
[exec] where T is a type-variable:
[exec] T extends Comparable declared in class WeightedDirectedGraph
[exec] /home/adb/git/MC/forge/mcp/src/minecraft/com/pahimar/ee3/emc/graph/WeightedDirectedGraph.java:185: error: cannot find symbol
[exec] if (edgeFromFirstNode.target.equals(secondNode)) {
[exec] ^
[exec]
[exec] symbol: variable target
[exec] location: variable edgeFromFirstNode of type WeightedEdge
[exec] where T is a type-variable:
[exec] T extends Comparable declared in class WeightedDirectedGraph
[exec] /home/adb/git/MC/forge/mcp/src/minecraft/com/pahimar/ee3/emc/graph/WeightedDirectedGraph.java:191: error: cannot find symbol
[exec] if (edgeFromSecondNode.target.equals(firstNode)) {
[exec] ^
[exec]
[exec] symbol: variable target
[exec] location: variable edgeFromSecondNode of type WeightedEdge
[exec] where T is a type-variable:
[exec] T extends Comparable declared in class WeightedDirectedGraph
[exec] /home/adb/git/MC/forge/mcp/src/minecraft/com/pahimar/ee3/emc/graph/WeightedDirectedGraph.java:201: error: incompatible types
[exec] return ImmutableList.copyOf(graph.keySet());
[exec] ^
[exec]
[exec] required: ImmutableList
[exec] found: ImmutableList<Node>
[exec] where T is a type-variable:
[exec] T extends Comparable declared in class WeightedDirectedGraph
[exec] /home/adb/git/MC/forge/mcp/src/minecraft/com/pahimar/ee3/item/ItemAlchemicalDust.java:80: warning: [deprecation] hasEffect(ItemStack) in Item has been deprecated
[exec] public boolean hasEffect(ItemStack stack) {
[exec] ^
[exec]
[exec] /home/adb/git/MC/forge/mcp/src/minecraft/com/pahimar/ee3/item/ItemMiniumStone.java:40: warning: [deprecation] hasEffect(ItemStack) in Item has been deprecated
[exec] public boolean hasEffect(ItemStack itemStack) {
[exec] ^
[exec]
[exec] /home/adb/git/MC/forge/mcp/src/minecraft/com/pahimar/ee3/item/ItemPhilosophersStone.java:47: warning: [deprecation] hasEffect(ItemStack) in Item has been deprecated
[exec] public boolean hasEffect(ItemStack itemStack) {
[exec] ^
[exec]
[exec] 11 errors
[exec] 18 warnings
[exec] ==================

commented

You should completely read the latest commit.

commented

Whoops, derp. Ignore this.