Skip to content

Commit

Permalink
revert lastindexof
Browse files Browse the repository at this point in the history
  • Loading branch information
amarziali committed Dec 12, 2024
1 parent 20d93e3 commit 0559bdb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public static String extractDeploymentName(final ThreadContextClassLoader classL
if (head < 0) {
return null;
}
final int tail = id.lastIndexOf('#', head);
final int tail = id.lastIndexOf('#');
if (tail < 0) {
return null;
}
Expand Down

0 comments on commit 0559bdb

Please sign in to comment.