diff --git a/querydsl-scala/.cache b/querydsl-scala/.cache index 27c80ee2f..22fc058fe 100644 Binary files a/querydsl-scala/.cache and b/querydsl-scala/.cache differ diff --git a/querydsl-scala/src/main/scala/com/mysema/query/scala/sql/Paths.scala b/querydsl-scala/src/main/scala/com/mysema/query/scala/sql/Paths.scala index c27dd77c0..93b163cd7 100644 --- a/querydsl-scala/src/main/scala/com/mysema/query/scala/sql/Paths.scala +++ b/querydsl-scala/src/main/scala/com/mysema/query/scala/sql/Paths.scala @@ -35,17 +35,6 @@ class RelationalPathImpl[T](md: PathMetadata[_], schema: String, table: String)( @BeanProperty lazy val projection: FactoryExpression[T] = RelationalPathUtils.createProjection(this) -// val rp = RelationalPathImpl.this -// val bindings = getFields(getClass) -// // only non static Path typed fields -// .filter(f => classOf[Path[_]].isAssignableFrom(f.getType) && !Modifier.isStatic(f.getModifiers)) -// // map to property,value tuples -// .map(f => getNameAndValue[Path[_]](rp,f)) -// // filter non related tuples out -// .filter(rp == _._2.getMetadata.getParent) -// .toMap -// new QBean[T](getType.asInstanceOf[Class[T]], true, bindings) -// } def this(variable: String, schema: String, table: String)(implicit mf: Manifest[T]) = this(forVariable(variable), schema, table)(mf)