Skip to content

Commit 9ec2b07

Browse files
committed
Fix formatting
1 parent 894aa60 commit 9ec2b07

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

core/trino-spi/src/main/java/io/trino/spi/type/TypeOperators.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -524,8 +524,7 @@ private static List<Type> getOperatorArgumentTypes(OperatorConvention operatorCo
524524
return switch (operatorConvention.operatorType()) {
525525
case EQUAL, IS_DISTINCT_FROM, COMPARISON_UNORDERED_LAST, COMPARISON_UNORDERED_FIRST, LESS_THAN, LESS_THAN_OR_EQUAL ->
526526
List.of(operatorConvention.type(), operatorConvention.type());
527-
case READ_VALUE, HASH_CODE, XX_HASH_64, INDETERMINATE ->
528-
List.of(operatorConvention.type());
527+
case READ_VALUE, HASH_CODE, XX_HASH_64, INDETERMINATE -> List.of(operatorConvention.type());
529528
default -> throw new IllegalArgumentException("Unsupported operator type: " + operatorConvention.operatorType());
530529
};
531530
}

0 commit comments

Comments
 (0)