Skip to content

Commit

Permalink
style: remove unecessary imports
Browse files Browse the repository at this point in the history
Signed-off-by: Otavio Santana <otaviopolianasantana@gmail.com>
  • Loading branch information
otaviojava committed May 2, 2023
1 parent cd678d5 commit 6ec88d2
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,18 +46,4 @@ public ColumnQuery query() {
public Params params() {
return params;
}

@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ColumnQueryParams that = (ColumnQueryParams) o;
return Objects.equals(query, that.query) &&
Objects.equals(params, that.params);
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@

import org.eclipse.jnosql.communication.Condition;

import java.util.Objects;

/**
* The default implementation of {@link QueryCondition}
*/
Expand Down

0 comments on commit 6ec88d2

Please sign in to comment.