Better hyphing

This commit is contained in:
thatsIch 2015-05-18 00:33:39 +02:00
parent 733a53ec6d
commit 83c9c0efcb

View file

@ -1,6 +1,6 @@
/*
* This file is part of Applied Energistics 2.
* Copyright (c) 2013 - 2014, AlgorithmX2, All rights reserved.
* Copyright (c) 2013 - 2015, AlgorithmX2, All rights reserved.
*
* Applied Energistics 2 is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
@ -54,7 +54,7 @@ public class RegistryContainer implements IRegistryContainer
private final ISpecialComparisonRegistry comparison = new SpecialComparisonRegistry();
private final IWirelessTermRegistry wireless = new WirelessRegistry();
private final IGridCacheRegistry gridCache = new GridCacheRegistry();
private final IP2PTunnelRegistry p2ptunnel = new P2PTunnelRegistry();
private final IP2PTunnelRegistry p2pTunnel = new P2PTunnelRegistry();
private final IMovableRegistry movable = new MovableTileRegistry();
private final IMatterCannonAmmoRegistry matterCannonReg = new MatterCannonAmmoRegistry();
private final IPlayerRegistry playerRegistry = new PlayerRegistry();
@ -117,7 +117,7 @@ public class RegistryContainer implements IRegistryContainer
@Override
public IP2PTunnelRegistry p2pTunnel()
{
return this.p2ptunnel;
return this.p2pTunnel;
}
@Override