Typo SpecialComparsonRegistry

This commit is contained in:
thatsIch 2014-09-21 02:27:54 +02:00
parent 4e66fa3c7a
commit ce2dbecde1
2 changed files with 3 additions and 5 deletions

View file

@ -22,7 +22,7 @@ public class RegistryContainer implements IRegistryContainer
private ExternalStorageRegistry ExternalStorageHandlers = new ExternalStorageRegistry();
private CellRegistry CellRegistry = new CellRegistry();
private LocatableRegistry LocatableRegistry = new LocatableRegistry();
private SpecialComparisonRegistry SpecialComparsonRegistry = new SpecialComparisonRegistry();
private SpecialComparisonRegistry SpecialComparisonRegistry = new SpecialComparisonRegistry();
private WirelessRegistry WirelessRegistry = new WirelessRegistry();
private GridCacheRegistry GridCacheRegistry = new GridCacheRegistry();
private P2PTunnelRegistry P2PRegistry = new P2PTunnelRegistry();
@ -52,7 +52,7 @@ public class RegistryContainer implements IRegistryContainer
@Override
public ISpecialComparisonRegistry specialComparison()
{
return SpecialComparsonRegistry;
return SpecialComparisonRegistry;
}
@Override

View file

@ -48,9 +48,7 @@ public class ItemModList implements IItemContainer<IAEItemStack>
@Override
public Collection<IAEItemStack> findFuzzy(IAEItemStack input, FuzzyMode fuzzy)
{
Collection<IAEItemStack> overrides = overrides.findFuzzy( input, fuzzy );
return overrides;
return overrides.findFuzzy( input, fuzzy );
}
@Override