Skip to content

Commit

Permalink
HBX-2548: Make changes to the JBT bridge so that the Wrapper interfac…
Browse files Browse the repository at this point in the history
…e does not leak into the JBT code

  - Call constructor of super class in 'org.hibernate.tool.orm.jbt.wrp.DelegatingColumnWrapperImpl'

Signed-off-by: Koen Aers <[email protected]>
  • Loading branch information
koentsje committed Jul 19, 2023
1 parent 22bffa5 commit e77d6ae
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ public class DelegatingColumnWrapperImpl extends Column implements ColumnWrapper
private Column delegate = null;

public DelegatingColumnWrapperImpl(Column c) {
super(c.getName());
delegate = c;
}

Expand Down

0 comments on commit e77d6ae

Please sign in to comment.