Formatting

This commit is contained in:
nathan 2019-01-20 21:36:04 +01:00
parent 9d3cf9fdf5
commit df73b839b4
2 changed files with 5 additions and 5 deletions

View File

@ -26,17 +26,17 @@ interface RmiConnection {
/**
* Used by RMI for the LOCAL side, to get the proxy object as an interface
*
* @param objectID this is the RMI object ID
* @param objectId this is the RMI object ID
* @param iFace must be the interface the proxy will bind to
*/
RemoteObject getProxyObject(final int objectID, final Class<?> iFace);
RemoteObject getProxyObject(final int objectId, final Class<?> iFace);
/**
* This is used by RMI for the REMOTE side, to get the implementation
*
* @param objectID this is the RMI object ID
* @param objectId this is the RMI object ID
*/
Object getImplementationObject(final int objectID);
Object getImplementationObject(final int objectId);
/**
* Used by RMI

View File

@ -80,7 +80,7 @@ class ConnectionWrapper implements CryptoConnection, ChannelHandler {
@Override
public
Object getImplementationObject(final int objectID) {
Object getImplementationObject(final int objectId) {
throw new IllegalArgumentException("not implemented");
}