Skip to content

Commit

Permalink
Fixed bug in package code extraction logic
Browse files Browse the repository at this point in the history
  • Loading branch information
shannah committed Jan 15, 2022
1 parent 08e808f commit e615f26
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ private static String extractJDeployBundleCodeFromFileName(String fileName) {
char[] chars = fileName.substring(pos+1).toCharArray();
for (int i=0; i<chars.length; i++) {
char c = chars[i];
if (('0' <= c && '9' <= c) || ('A' <= c && 'Z' >= c)) {
if (('0' <= c && '9' >= c) || ('A' <= c && 'Z' >= c)) {
out.append(c);
} else {
break;
Expand Down

0 comments on commit e615f26

Please sign in to comment.