1
0
Fork 0

ElaborationArtefacts: revert unintentional change

This commit is contained in:
Megan Wachs 2018-02-15 14:23:54 -08:00 committed by GitHub
parent e0c3b22d61
commit c34b940d9a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ trait GeneratorApp extends App with HasGeneratorUtilities {
object ElaborationArtefacts {
var files: Seq[(String, () => String)] = Nil
def add(extension: String, contents: => String) = {
def add(extension: String, contents: => String) {
files = (extension, () => contents) +: files
}