Correct utterly shameful uppercase letter sin

This commit is contained in:
Cheeserolls 2015-04-04 02:18:29 +01:00
parent 68e56e5324
commit c8e097ee37
1 changed files with 3 additions and 3 deletions

View File

@ -63,13 +63,13 @@ public class BlockStateUtils
for (IProperty prop : properties) {propStack.push(prop);} for (IProperty prop : properties) {propStack.push(prop);}
if (!propStack.isEmpty()) if (!propStack.isEmpty())
{ {
AddStatesToList(baseState, states, propStack); addStatesToList(baseState, states, propStack);
} }
ImmutableSet<IBlockState> ret = ImmutableSet.copyOf(states); ImmutableSet<IBlockState> ret = ImmutableSet.copyOf(states);
return ret; return ret;
} }
private static void AddStatesToList(IBlockState state, List<IBlockState> list, Stack<IProperty> stack) private static void addStatesToList(IBlockState state, List<IBlockState> list, Stack<IProperty> stack)
{ {
if (stack.empty()) if (stack.empty())
{ {
@ -81,7 +81,7 @@ public class BlockStateUtils
IProperty prop = stack.pop(); IProperty prop = stack.pop();
for (Object value : prop.getAllowedValues()) for (Object value : prop.getAllowedValues())
{ {
AddStatesToList(state.withProperty(prop, (Comparable)value), list, stack); addStatesToList(state.withProperty(prop, (Comparable)value), list, stack);
} }
stack.push(prop); stack.push(prop);
} }