Problem with TextQualifier in FlatFileImporter

0
I have downloaded the FlatFileImporter in a Mx 4.8 Project. After this, I have converted the project to 5.12. For some reason, the file FlatFileImporter\proxies\TextQualifier.java is created. Line 11 contains now: Double_Quote___(new String[][] { new String[] { "en_US", "Double Quote(\")" }, new String[] { "nl_NL", "Double Quote(\")" } }); This should be: Double_Quote___(new String[][] { new String[] { "en_US", "Double Quote(\")" }, new String[] { "nl_NL", "Double Quote(\")" } }); I don't know how to change this line because it's rewritten every time I run the project...Anyone knows how to solve this?
asked
1 answers
1

I have had the same problem. This is a problem in Mendix 5.
A ticket has been entered, but please file one too to express that it is important to fix it.

You can work around this by removing the " character from both the English and Dutch caption of the enumeration. That will solve your compile error.

answered