From a805223b4e83792b4edf0514431fc52eec77f023 Mon Sep 17 00:00:00 2001 From: Todd Lipcon Date: Wed, 9 Feb 2011 01:39:02 +0000 Subject: [PATCH] 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 --- .../org/apache/hadoop/ipc/ProtocolSignature.java | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/java/org/apache/hadoop/ipc/ProtocolSignature.java b/src/java/org/apache/hadoop/ipc/ProtocolSignature.java index e3d1c3e4bd..a055a7fd46 100644 --- a/src/java/org/apache/hadoop/ipc/ProtocolSignature.java +++ b/src/java/org/apache/hadoop/ipc/ProtocolSignature.java @@ -238,16 +238,4 @@ public static ProtocolSignature getProtocolSignature(VersionedProtocol server, return ProtocolSignature.getProtocolSignature( 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); - } }