Drop getExternal method from JavaSignatureFormatter

This commit is contained in:
zarechenskiy
2014-03-28 19:06:15 +04:00
committed by Alexander Udalov
parent d7337fbe94
commit 735df2e340
3 changed files with 1 additions and 16 deletions
@@ -41,12 +41,4 @@ public abstract class JavaSignatureFormatter {
*/
@NotNull
public abstract String formatMethod(@NotNull JavaMethod method);
/**
* @return a formatted signature of a method, showing method's containing class, return type and parameter types, all names are fully
* qualified, e.g.:
* {@code "java.lang.Class boolean isAnnotationPresent(java.lang.Class<? extends java.lang.annotation.Annotation>)"}
*/
@NotNull
public abstract String getExternalName(@NotNull JavaMethod method);
}