diff --git a/pmd/src/net/sourceforge/pmd/symboltable/Search.java b/pmd/src/net/sourceforge/pmd/symboltable/Search.java index 7938dc4569..788d334096 100644 --- a/pmd/src/net/sourceforge/pmd/symboltable/Search.java +++ b/pmd/src/net/sourceforge/pmd/symboltable/Search.java @@ -39,10 +39,4 @@ public class Search { } return null; } - - private String getClsName(Class cls) { - String fullName = cls.getName(); - int lastDot = fullName.lastIndexOf('.'); - return fullName.substring(lastDot + 1); - } }