Skip to content

Commit

Permalink
quarkusio#34443 use correct order
Browse files Browse the repository at this point in the history
(cherry picked from commit 9bf53ce)
  • Loading branch information
humcqc authored and gsmet committed Jul 5, 2023
1 parent b36a783 commit d6406bd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,11 @@ private static DotName createConstant(String fqcn) {
public static final DotName STATEMENT_INSPECTOR = createConstant("org.hibernate.resource.jdbc.spi.StatementInspector");

public static final List<DotName> GENERATORS = List.of(
createConstant("org.hibernate.generator.internal.TenantIdGeneration"),
createConstant("org.hibernate.generator.internal.CurrentTimestampGeneration"),
createConstant("org.hibernate.generator.internal.GeneratedAlwaysGeneration"),
createConstant("org.hibernate.generator.internal.GeneratedGeneration"),
createConstant("org.hibernate.generator.internal.SourceGeneration"),
createConstant("org.hibernate.generator.internal.TenantIdGeneration"),
createConstant("org.hibernate.generator.internal.VersionGeneration"),
createConstant("org.hibernate.id.Assigned"),
createConstant("org.hibernate.id.ForeignGenerator"),
Expand Down

0 comments on commit d6406bd

Please sign in to comment.