Skip to content

Commit

Permalink
fix(core): no longer lowercasing PluginClassIdentifier to have proper…
Browse files Browse the repository at this point in the history
… validation upon Plugin deserialization

closes #7387
  • Loading branch information
brian-mulier-p committed Feb 27, 2025
1 parent 39cd618 commit 8b8f40d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ public static ClassTypeIdentifier create(final String identifier) {
if (identifier == null || identifier.isBlank()) {
throw new IllegalArgumentException("Cannot create plugin identifier from null or empty string");
}
return new ClassTypeIdentifier(identifier.toLowerCase(Locale.ROOT));
return new ClassTypeIdentifier(identifier);
}

/**
Expand Down

0 comments on commit 8b8f40d

Please sign in to comment.