This commit is contained in:
Timo Westkämper 2008-11-06 16:02:26 +00:00
parent 1214743bef
commit e5a1bb24f3
3 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@
<parent>
<groupId>com.mysema.querydsl</groupId>
<artifactId>querydsl-root</artifactId>
<version>0.2.7</version>
<version>0.2.7-SNAPSHOT</version>
</parent>
<groupId>com.mysema.querydsl</groupId>

View File

@ -17,7 +17,7 @@ import static com.mysema.query.grammar.types.Expr.*;
* @version $Id$
*/
public interface Query<A extends Query<A>>{
A select(Expr<?>... o);
//A select(Expr<?>... o);
A from(Entity<?>... o);
@Deprecated A innerJoin(Entity<?> o);
@Deprecated A join(Entity<?> o);

View File

@ -82,7 +82,7 @@ public class QueryBase<JoinMeta,A extends QueryBase<JoinMeta,A>> implements Quer
return (A) this;
}
public A select(Expr<?>... o) {
protected A select(Expr<?>... o) {
select.addAll(Arrays.asList(o));
return (A) this;
}