[generator] Fixed error message

This commit is contained in:
Miro Spönemann 2016-07-15 12:10:58 +02:00
parent db301f25e5
commit c55e48ce66
2 changed files with 2 additions and 2 deletions

View file

@ -36,7 +36,7 @@ class RuntimeProjectConfig extends BundleProjectConfig implements IRuntimeProjec
}
throw new RuntimeException('''
Could not derive the Ecore model folder from the project configuration.
Please make sure that \'root\' is a prefix of \'ecoreModel\'.
Please make sure that 'root' is a prefix of 'ecoreModel'.
was (root='«root.path»', ecoreModel='«ecoreModel.path»')
''')

View file

@ -57,7 +57,7 @@ public class RuntimeProjectConfig extends BundleProjectConfig implements IRuntim
StringConcatenation _builder = new StringConcatenation();
_builder.append("Could not derive the Ecore model folder from the project configuration. ");
_builder.newLine();
_builder.append("Please make sure that \\\'root\\\' is a prefix of \\\'ecoreModel\\\'.");
_builder.append("Please make sure that \'root\' is a prefix of \'ecoreModel\'.");
_builder.newLine();
_builder.append("was (root=\'");
IXtextGeneratorFileSystemAccess _root_2 = this.getRoot();