Skip to content

Commit

Permalink
small cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ignatov committed Aug 19, 2011
1 parent 429bcb4 commit fa52751
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/scala/scala/tools/colladoc/snippet/ProfileOps.scala
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ class ProfileOps {

val entities = dscs.map(d => (d.qualifiedName.is, d)).groupBy(p => p._1)

lazy val x = entities map { case (qualifiedName, value) => {
lazy val entitiesHtml = entities map { case (qualifiedName, value) => {
val m = pathToTemplate(model.vend.rootPackage, fixedPath(qualifiedName))

val containingType = tmpl(m);
Expand All @@ -395,7 +395,7 @@ class ProfileOps {
bind("discussion_comment", template.discussionToHtml(d))
}

val discussionComments = <xml:group>{x map (y => y)}</xml:group>
val discussionComments = <xml:group>{entitiesHtml}</xml:group>

bind("profile",
profile.body,
Expand Down

0 comments on commit fa52751

Please sign in to comment.