Typo fixes

This commit is contained in:
Rostislav Svoboda
2020-01-05 23:10:23 +01:00
parent 8328ee5c2f
commit c9e6b58ed4
22 changed files with 38 additions and 38 deletions

View File

@@ -35,9 +35,9 @@ public class AnalyseCallTreeMojo extends AbstractMojo {
String clazz = className;
String method = "<init>";
if (methodName != null) {
int idex = methodName.lastIndexOf('.');
clazz = methodName.substring(0, idex);
method = methodName.substring(idex + 1);
int index = methodName.lastIndexOf('.');
clazz = methodName.substring(0, index);
method = methodName.substring(index + 1);
}
File[] files = reportsDir.listFiles();