Skip to content

Commit

Permalink
[FLINK-8524] Fix TypeExtractor.getBinaryReturnType JavaDoc
Browse files Browse the repository at this point in the history
The JavaDoc stated that the parameter `lambdaOutputTypeArgumentIndices` was a
table of indices of the type argument specifying the input type, where it
actually is a table of indices of the type argument specifying the output
type. This is now fixed.

This closes apache#5382.
  • Loading branch information
florianschmidt1994 authored and zentol committed Jan 30, 2018
1 parent 9af6e3b commit 67ab701
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -653,7 +653,7 @@ public static <IN, OUT> TypeInformation<OUT> getUnaryOperatorReturnType(
* @param outputTypeArgumentIndex Index of output type in the class specification
* @param lambdaInput1TypeArgumentIndices Table of indices of the type argument specifying the first input type. See example.
* @param lambdaInput2TypeArgumentIndices Table of indices of the type argument specifying the second input type. See example.
* @param lambdaOutputTypeArgumentIndices Table of indices of the type argument specifying the input type. See example.
* @param lambdaOutputTypeArgumentIndices Table of indices of the type argument specifying the output type. See example.
* @param in1Type Type of the left side input elements (In case of an iterable, it is the element type)
* @param in2Type Type of the right side input elements (In case of an iterable, it is the element type)
* @param functionName Function name
Expand Down

0 comments on commit 67ab701

Please sign in to comment.