Skip to content

Commit

Permalink
Port DH-11580: Fix Incorrect JoinListener Descriptions (#3312)
Browse files Browse the repository at this point in the history
  • Loading branch information
nbauernfeind authored Jan 17, 2023
1 parent e2e196e commit 680a4eb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
public class JoinListenerRecorder extends ListenerRecorder {

public JoinListenerRecorder(boolean isLeft, final String description, Table parent, BaseTable dependent) {
super(isLeft ? "leftTable: " : "rightTable: " + description, parent, dependent);
super((isLeft ? "leftTable: " : "rightTable: ") + description, parent, dependent);
}
}

0 comments on commit 680a4eb

Please sign in to comment.