4.8.9. Flat and delimited file export

0
We are testing the upgrade to 489 and encounter java compilation errors caused by the widget Flat and delimited file export. \flatfileexport\actions\RetrieveRelated.java:82: error: cannot find symbol [javac] List<imendixidentifier> objs = refset.a; [javac] ^ [javac] symbol: variable a [javac] location: variable refset of type MendixObjectReferenceSet What could be a quick fix for this issue? Thanks.
asked
1 answers
2

I talked with Edwin about this. Change this line of code:

List<imendixidentifier> objs = refset.a;

to

List<imendixidentifier> objs = refset.getValue(getContext());

Beware that for Mx5 it should be

List<imendixidentifier> objs = refset.getValue;

Regards,

Ronald

answered