Is Lucee's implementation of serializeJson ignoring remotingFetch?

After studying the codes in ColdFusion, I believe that any properties in an entity that is marked with remotingfetch=“false” are skipped when serializeJson function is called.

On Lucee, I expected a similar behavior, but Lucee still serializes properties with remotingfetch=“false”.

I looked through the implementation of SerializeJson and I think Lucee ignores the remotingfetch in its implementation of serializejson.

Instantiation of JSONConverter in SerializeJson.java. ignoreRemotingFetch is hard-coded to ‘true’

Constructor in JSONConverter.java

Checking of ignoreRemotingFetch member variable

Is there any reason why Lucee might ignore this particular property?