Skip to content

Commit

Permalink
47950 -- fix bug added during conflict resolution -- still WIP -- two…
Browse files Browse the repository at this point in the history
… failing tests.
  • Loading branch information
tballison committed Sep 18, 2023
1 parent f5bd3fc commit 8b7d395
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ public Entry getEntry(final String name) throws FileNotFoundException {
Entry rval = null;

if (name != null) {
rval = _byname.get(name.toUpperCase(Locale.ROOT));
rval = _byname.get(name);
}
if (rval == null) {
// throw more useful exceptions for known wrong file-extensions
Expand Down

0 comments on commit 8b7d395

Please sign in to comment.