mirror of
https://github.com/jlengrand/quarkus.git
synced 2026-03-10 08:41:22 +00:00
Typo fixes
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user