mirror of
https://github.com/sigmasternchen/xtext-core
synced 2025-03-15 08:18:55 +00:00
[generator] Fixed error message
This commit is contained in:
parent
db301f25e5
commit
c55e48ce66
2 changed files with 2 additions and 2 deletions
|
@ -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»')
|
||||
|
||||
''')
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue