HADOOP-7129. Complete patch by removing the transitional method name. Contributed by Todd Lipcon

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1068728 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Todd Lipcon 2011-02-09 01:39:02 +00:00
parent bf1d3ba0a6
commit a805223b4e

View File

@ -238,16 +238,4 @@ public static ProtocolSignature getProtocolSignature(VersionedProtocol server,
return ProtocolSignature.getProtocolSignature( return ProtocolSignature.getProtocolSignature(
clientMethodsHash, serverVersion, inter); clientMethodsHash, serverVersion, inter);
} }
/**
* @deprecated Misspelled method name - to be removed after references
* to this typo have been fixed in HDFS and MapRed.
*/
@Deprecated
public static ProtocolSignature getProtocolSigature(VersionedProtocol server,
String protocol,
long clientVersion, int clientMethodsHash) throws IOException {
return getProtocolSignature(server, protocol, clientVersion,
clientMethodsHash);
}
} }