removed commented code

This commit is contained in:
Timo Westkämper 2011-11-30 21:18:45 +02:00
parent 034af53645
commit 7dda0ad5fc
2 changed files with 0 additions and 11 deletions

Binary file not shown.

View File

@ -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)