From 9021a46b12feb03b4ca73177b4cf9cd706065d6b Mon Sep 17 00:00:00 2001 From: Daniel Beskin Date: Sat, 10 Dec 2011 20:33:10 +0200 Subject: [PATCH] Whitespace fix. --- .../scala/com/codecommit/antixml/CanBuildFromWithZipper.scala | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/scala/com/codecommit/antixml/CanBuildFromWithZipper.scala b/src/main/scala/com/codecommit/antixml/CanBuildFromWithZipper.scala index a529012..5999f32 100644 --- a/src/main/scala/com/codecommit/antixml/CanBuildFromWithZipper.scala +++ b/src/main/scala/com/codecommit/antixml/CanBuildFromWithZipper.scala @@ -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`.