Skip to content

Commit

Permalink
fix file path to class name
Browse files Browse the repository at this point in the history
  • Loading branch information
sweetStreet authored and mswiderski committed Dec 21, 2023
1 parent 7e63564 commit 0ef0294
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public String generatedFilePath() {
}

private String getCompiledClassName(Path fileNameRelative) {
return fileNameRelative.toString().replace("/", ".").replace(".java", "");
return fileNameRelative.toString().replace(".java", "").replace("/", ".");
}

public String extractedProcessId() {
Expand Down

0 comments on commit 0ef0294

Please sign in to comment.