Comments to know where to pick up. Man this stuff is annoying

This commit is contained in:
pahimar 2013-11-07 21:30:22 -05:00
parent 9e79ec2df7
commit 7f3d094949

View file

@ -404,6 +404,8 @@ public class EncodedNBTHelper {
Multimap<CustomWrappedStack, List<CustomWrappedStack>> decodedRecipes = HashMultimap.create();
// TODO Finish
return decodedRecipes;
}
@ -463,6 +465,8 @@ public class EncodedNBTHelper {
public static NBTTagCompound encodeStackValueMap(String tagCompoundName, Map<CustomWrappedStack, EmcValue> stackValueMap) {
NBTTagCompound encodedStackValueMap = new NBTTagCompound(tagCompoundName);
// TODO Finish
return encodedStackValueMap;
}
@ -476,6 +480,8 @@ public class EncodedNBTHelper {
Map<CustomWrappedStack, EmcValue> decodedStackValueMap = new HashMap<CustomWrappedStack, EmcValue>();
// TODO Finish
return decodedStackValueMap;
}
}