mirror of
https://github.com/sigmasternchen/xtext-core
synced 2025-03-16 08:48:55 +00:00
[xtext generator] fixed nasty mistake in class name composition in new QuickfixProviderFragment2
Signed-off-by: Christian Schneider <christian.schneider@itemis.de>
This commit is contained in:
parent
5ac7f257cb
commit
779f30fac9
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ class QuickfixProviderFragment2 extends AbstractGeneratorFragment2 {
|
|||
|
||||
def protected TypeReference getQuickfixProviderClass(Grammar g) {
|
||||
return new TypeReference(
|
||||
grammar.eclipsePluginBasePackage + ".quickfix." + grammar.simpleName + "QuickfixProvider"
|
||||
g.eclipsePluginBasePackage + ".quickfix." + g.simpleName + "QuickfixProvider"
|
||||
)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue