Skip to content

Commit

Permalink
HHH-18034 Configuration property hibernate.event.listener.eventType
Browse files Browse the repository at this point in the history
… should be more lenient against spaces
  • Loading branch information
quaff authored and Sanne committed Apr 30, 2024
1 parent d414686 commit ecaeea4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
* @author Gail Badner
*/
public class MetadataImpl implements MetadataImplementor, Serializable {
private static final Pattern LISTENER_SEPARATION_PATTERN = Pattern.compile( " ," );
private static final Pattern LISTENER_SEPARATION_PATTERN = Pattern.compile( "\\s*,\\s*" );

private final UUID uuid;
private final MetadataBuildingOptions metadataBuildingOptions;
Expand Down

0 comments on commit ecaeea4

Please sign in to comment.