Skip to content

Commit 36050cb

Browse files
yrodierebeikov
authored andcommitted
HHH-15069 Fix backwards-incompatible changes for implementors of CompositeNestedGeneratedValueGenerator.GenerationPlan
1 parent 1afcae2 commit 36050cb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

hibernate-core/src/main/java/org/hibernate/id/CompositeNestedGeneratedValueGenerator.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,8 @@ public interface GenerationPlan extends ExportableProducer {
7979
*
8080
* @param context A context to help generate SQL strings
8181
*/
82-
void initialize(SqlStringGenerationContext context);
82+
default void initialize(SqlStringGenerationContext context) {
83+
}
8384

8485
/**
8586
* Execute the value generation.

0 commit comments

Comments
 (0)