Skip to content

Commit

Permalink
for #2084, remove useless codes
Browse files Browse the repository at this point in the history
  • Loading branch information
terrymanu committed Apr 25, 2019
1 parent 02e3f6d commit b182cfe
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ public void fill(final SubquerySegment sqlSegment, final SQLStatement sqlStateme
SelectStatement selectStatement = (SelectStatement) sqlStatement;
SelectStatement subqueryStatement = new SelectStatement();
subqueryStatement.setParentStatement(selectStatement);
selectStatement.getSubqueryStatements().add(subqueryStatement);
if (sqlSegment.getSelectItemsSegment().isPresent()) {
new SelectItemsFiller().fill(sqlSegment.getSelectItemsSegment().get(), subqueryStatement);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,6 @@ public final class SelectStatement extends DQLStatement {

private SelectStatement subqueryStatement;

private Collection<SelectStatement> subqueryStatements = new LinkedList<>();

private Collection<OrCondition> subqueryConditions = new LinkedList<>();

/**
Expand Down

0 comments on commit b182cfe

Please sign in to comment.