Skip to content

Commit

Permalink
#91: Added since parameter to deprecated annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
AnastasiiaSergienko committed Oct 12, 2020
1 parent 5e74dbd commit 0a75c26
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/exasol/sql/dql/select/Select.java
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public Select udf(final String functionName, final ValueExpression... valueExpre
* @param arithmeticExpression arithmetic expression
* @return <code>this</code> instance for fluent programming
*/
@Deprecated
@Deprecated(since = "4.0.2")
public Select arithmeticExpression(final BinaryArithmeticExpression arithmeticExpression) {
return valueExpression(arithmeticExpression);
}
Expand All @@ -132,7 +132,7 @@ public Select arithmeticExpression(final BinaryArithmeticExpression arithmeticEx
* @param derivedColumnName name under which you can refer to the derived column
* @return <code>this</code> instance for fluent programming
*/
@Deprecated
@Deprecated(since = "4.0.2")
public Select arithmeticExpression(final BinaryArithmeticExpression arithmeticExpression,
final String derivedColumnName) {
return valueExpression(arithmeticExpression, derivedColumnName);
Expand Down

0 comments on commit 0a75c26

Please sign in to comment.