From 93dd4a26e5589f3fb8c965881490b34e078ff1e5 Mon Sep 17 00:00:00 2001 From: sjfink Date: Mon, 13 Aug 2007 21:45:33 +0000 Subject: [PATCH] comment out weird implementation of getMethodSignature() git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@1615 f5eafffb-2e1d-0410-98e4-8ec43c5233c4 --- .../com/ibm/wala/eclipse/util/JdtUtil.java | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/com.ibm.wala.core/src/com/ibm/wala/eclipse/util/JdtUtil.java b/com.ibm.wala.core/src/com/ibm/wala/eclipse/util/JdtUtil.java index 3164fb5fe..9e438544c 100644 --- a/com.ibm.wala.core/src/com/ibm/wala/eclipse/util/JdtUtil.java +++ b/com.ibm.wala.core/src/com/ibm/wala/eclipse/util/JdtUtil.java @@ -96,19 +96,19 @@ public class JdtUtil { return className; } - public static String getMethodSignature(IMethod method) { - if (method == null) { - throw new IllegalArgumentException("method is null"); - } - try { - String methodParamReturnInfo = method.getSignature(); - String methodName = method.getElementName(); - String methodSignature = methodName + " " + methodParamReturnInfo; - return methodSignature; - } catch (JavaModelException e) { - } - return ""; - } +// public static String getMethodSignature(IMethod method) { +// if (method == null) { +// throw new IllegalArgumentException("method is null"); +// } +// try { +// String methodParamReturnInfo = method.getSignature(); +// String methodName = method.getElementName(); +// String methodSignature = methodName + " " + methodParamReturnInfo; +// return methodSignature; +// } catch (JavaModelException e) { +// } +// return ""; +// } /** * Return a unique string representing the specified Java element across