Anyone got any tips on working around this error?

JRebel: Class 'com.blah.blah.explorer.snippet.Features$$anonfun$render
$1' implements new interfaces and could not be reloaded!

I've just tried JRebel for the first time, and I made what I thought
was a minor change to my snippet and JRebel wasn't able to reload it.

The change I made was to uncomment the "sort" line in this snippet:

class Features {
  def render( xhtml: NodeSeq) : NodeSeq = {
    Server.store
      .classes
      //.sort( (c1,c2) => c1.name.toString < c2.name.toString)
      .flatMap( c =>
      bind("feature", xhtml,
        "name" -> c.name
      )
    )
  }
}

Thanks,

- Alex

--

You received this message because you are subscribed to the Google Groups 
"Lift" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=.


Reply via email to