I have an SVG image representing the Switzerland flag, with a cross made of two overlapping rectangle paths. I need to make it look more like the real flag by removing two vertical lines in the center of the cross.
Is there a way to modify the code to eliminate those lines?
<g fill-rule="evenodd" stroke-width="1pt">
<path stroke="white" stroke-width="1" fill="black" d="M0 0h640v480H0z"/>
<g fill="black">
<path stroke="white" stroke-width="1" d="M170 194.997h299.996v89.997H170z"/>
<path stroke="white" stroke-width="1" d="M275 89.997h89.996v299.996H275z"/>
</g>