Skip to content

Commit

Permalink
Made QueryParameters a proper subclass
Browse files Browse the repository at this point in the history
  • Loading branch information
dpp committed Aug 3, 2011
1 parent 1c9629e commit d840afd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/webkit/src/main/scala/net/liftweb/sitemap/Loc.scala
Expand Up @@ -654,13 +654,13 @@ object Loc {
* Calculate additional query parameters to add as a query
* string to the Loc
*/
case class QueryParameters(f: () => List[(String, String)])
case class QueryParameters(f: () => List[(String, String)]) extends AnyLocParam

/**
* Calculate additional query parameters to add as a query
* string to the Loc
*/
case class LocQueryParameters[T](f: Box[T] => List[(String, String)])
case class LocQueryParameters[T](f: Box[T] => List[(String, String)]) extends LocParam[T]


/**
Expand Down

0 comments on commit d840afd

Please sign in to comment.