Skip to content
This repository has been archived by the owner on May 15, 2019. It is now read-only.

Commit

Permalink
Whitespace fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
ncreep committed Dec 10, 2011
1 parent 5c43fad commit 9021a46
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -109,11 +109,13 @@ object CanBuildFromWithZipper {
* @see [[com.codecommit.antixml.CanBuildFromWithZipper]]
*/
sealed abstract class ElemsWithContext[+Elem](path: ZipperPath, updateTime: Int)

/**
* A visible zipper element.
* @param elements the actual elements to be added to the zipper.
*/
case class ElemsWithContextVisible[+Elem](path: ZipperPath, updateTime: Int, elements: GenTraversableOnce[Elem]) extends ElemsWithContext[Elem](path, updateTime)
case class ElemsWithContextVisible[+Elem](path: ZipperPath, updateTime: Int, elements: GenTraversableOnce[Elem]) extends ElemsWithContext[Elem](path, updateTime)

/**
* A hidden zipper element.
* @tparam Elem Dummy parameterization to satisfy the signature of methods like `flatMap`.
Expand Down

0 comments on commit 9021a46

Please sign in to comment.