Skip to content

Commit

Permalink
[scala] Update limit of row columns from 26 to 52
Browse files Browse the repository at this point in the history
  • Loading branch information
cchantep committed Dec 11, 2013
1 parent d6e4d9a commit 3cc594b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scala/build.sbt
Expand Up @@ -16,7 +16,7 @@ sourceGenerators in Compile <+= (baseDirectory in Compile) zip (sourceManaged in
val (base, managed) = dirs
val rlf = managed / "acolyte" / "RowLists.scala"
IO.writer[java.io.File](rlf, "", IO.defaultCharset, false) { w
val letter = 'A' to 'Z'
val letter = ('A' to 'Z').map(_.toString) ++: ('A' to 'Z').map(l "A" + l)
val lim = letter.size
val conv = for (n 1 to lim) yield {
val gp = (for (i 0 until n) yield letter(i)).mkString(", ")
Expand Down

0 comments on commit 3cc594b

Please sign in to comment.