Skip to content

Commit 0431105

Browse files
committed
Update comment
1 parent 036e84e commit 0431105

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/mybatis/dynamic/sql/select/function/OperatorFunction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ protected OperatorFunction<T> copy() {
5050
public String renderWithTableAlias(TableAliasCalculator tableAliasCalculator) {
5151
String paddedOperator = " " + operator + " "; //$NON-NLS-1$ //$NON-NLS-2$
5252

53-
// note - the cast below is added for a type inference bug in the Java9 compiler.
53+
// note - the cast below is added for a type inference issues in some compilers
5454
return Stream.of(Stream.of((BasicColumn) column), Stream.of(secondColumn), subsequentColumns.stream())
5555
.flatMap(Function.identity())
5656
.map(column -> column.renderWithTableAlias(tableAliasCalculator))

0 commit comments

Comments
 (0)