mirror of
https://github.com/querydsl/querydsl.git
synced 2026-07-03 21:07:49 +08:00
Remove JPA specific SQLSubQuery
This commit is contained in:
parent
77ff48e94c
commit
6860ddcb75
@ -1,26 +0,0 @@
|
||||
package com.mysema.query.jpa;
|
||||
|
||||
import com.mysema.query.QueryMetadata;
|
||||
import com.mysema.query.sql.Configuration;
|
||||
|
||||
public class SQLSubQuery extends AbstractSQLSubQuery<SQLSubQuery> {
|
||||
|
||||
public SQLSubQuery() {
|
||||
super();
|
||||
}
|
||||
|
||||
public SQLSubQuery(QueryMetadata metadata) {
|
||||
super(metadata);
|
||||
}
|
||||
|
||||
public SQLSubQuery(Configuration configuration, QueryMetadata metadata) {
|
||||
super(metadata);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SQLSubQuery clone() {
|
||||
SQLSubQuery subQuery = new SQLSubQuery(configuration, getMetadata());
|
||||
return subQuery;
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user