Removed deprecated API methods

This commit is contained in:
yueh 2016-09-17 15:08:47 +02:00
parent f185bc07a6
commit 860636d067
2 changed files with 0 additions and 22 deletions

View File

@ -29,18 +29,6 @@ package appeng.api.features;
*/
public interface ILocatableRegistry
{
/**
* Attempts to find the object with the serial specified, if it can it
* returns the object.
*
* @param serial serial
*
* @return requestedObject, or null
*
* @deprecated use {@link ILocatableRegistry#getLocatableBy(long)}
*/
@Deprecated
Object findLocatableBySerial( long serial );
/**
* Gets the {@link ILocatable} with the registered serial, if available

View File

@ -60,16 +60,6 @@ public final class LocatableRegistry implements ILocatableRegistry
}
}
/**
* Find a locate-able object by its serial.
*/
@Override
@Deprecated
public Object findLocatableBySerial( final long ser )
{
return this.set.get( ser );
}
@Override
public ILocatable getLocatableBy( final long serial )
{