Closed KasiaKoz closed 9 months ago
The java array types are being read to a set with extra unnecessary characters.
Given:
<attribute name="attrib" class="java.lang.Array">{'A', 'B'}</attribute>
will be read to a set with elements "{'A'" and " 'B'}" in python:
"{'A'"
" 'B'}"
{"{'A'", " 'B'}"}
We expect it to be a set with elements "A" and "B" in python:
"A"
"B"
{"A", "B"}
The java array types are being read to a set with extra unnecessary characters.
Given:
will be read to a set with elements
"{'A'"
and" 'B'}"
in python:We expect it to be a set with elements
"A"
and"B"
in python: