Skip to content

Commit

Permalink
Remove ToCssBindPromoter implicits in package object
Browse files Browse the repository at this point in the history
  • Loading branch information
Naftoli Gugenheim committed Oct 4, 2012
1 parent 9714074 commit fdce4ea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 12 deletions.
12 changes: 0 additions & 12 deletions core/util/src/main/scala/net/liftweb/util/package.scala
Expand Up @@ -32,18 +32,6 @@ package object util {
@deprecated("Use Schedule", "2.3") @deprecated("Use Schedule", "2.3")
val ActorPing = Schedule val ActorPing = Schedule


/**
* promote a String to a ToCssBindPromotor
*/
implicit def strToCssBindPromoter(str: String): ToCssBindPromoter =
new ToCssBindPromoter(Full(str), CssSelectorParser.parse(str))

/**
* promote a String to a ToCssBindPromotor
*/
implicit def cssSelectorToCssBindPromoter(sel: CssSelector): ToCssBindPromoter =
new ToCssBindPromoter(Empty, Full(sel))

/** /**
* Wrap a function and make sure it's a NodeSeq => NodeSeq. Much easier * Wrap a function and make sure it's a NodeSeq => NodeSeq. Much easier
* than explicitly casting the first parameter * than explicitly casting the first parameter
Expand Down
Expand Up @@ -22,6 +22,9 @@ import org.specs2.mutable.Specification
import common._ import common._
import scala.xml._ import scala.xml._


import BindHelpers._


/** /**
* Systems under specification for CSS Selector. * Systems under specification for CSS Selector.
*/ */
Expand Down

0 comments on commit fdce4ea

Please sign in to comment.