Removed unused utility method

git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/trunk@2078 51baf565-9d33-0410-a72c-fc3788e3496d
This commit is contained in:
Tom Copeland
2003-07-10 10:50:43 +00:00
parent 093fa46401
commit 1b4e921821

View File

@ -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);
}
}