This is an automated email from the ASF dual-hosted git repository.
doebele pushed a commit to branch version3
in repository https://gitbox.apache.org/repos/asf/empire-db.git
The following commit(s) were added to refs/heads/version3 by this push:
new 427263d EMPIREDB-362 fix
427263d is described below
commit 427263da3d8fe7621d148ff2744210e2226b211c
Author: Rainer Döbele <[email protected]>
AuthorDate: Sat Jan 22 15:02:26 2022 +0100
EMPIREDB-362 fix
---
empire-db/src/main/java/org/apache/empire/db/DBColumnExpr.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/empire-db/src/main/java/org/apache/empire/db/DBColumnExpr.java
b/empire-db/src/main/java/org/apache/empire/db/DBColumnExpr.java
index 99c146a..2855834 100644
--- a/empire-db/src/main/java/org/apache/empire/db/DBColumnExpr.java
+++ b/empire-db/src/main/java/org/apache/empire/db/DBColumnExpr.java
@@ -436,7 +436,7 @@ public abstract class DBColumnExpr extends DBExpr
* @param values the values to compare this column with
* @return a DBCompareColExpr for the "in" operator
*/
- public final <T extends Object> DBCompareColExpr in(T... values)
+ public final DBCompareColExpr in(Object... values)
{
if (values==null || values.length==0)
return cmp(DBCmpType.EQUAL, null);
@@ -475,7 +475,7 @@ public abstract class DBColumnExpr extends DBExpr
* @param values the values to compare this column with
* @return a DBCompareColExpr for the "not in" operator
*/
- public final <T extends Object> DBCompareColExpr notIn(T... values)
+ public final DBCompareColExpr notIn(Object... values)
{
if (values==null || values.length==0)
return cmp(DBCmpType.NOTEQUAL, null);