Skip to content

Commit

Permalink
deegree#1481 (1908) - remove prefix from featuretype title (WFS 1.1.0…
Browse files Browse the repository at this point in the history
… and 2.0.0)
  • Loading branch information
lgoltz committed Apr 13, 2023
1 parent b4e6c15 commit d3d3019
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -654,7 +654,7 @@ void export110()
if ( ftMd != null && ftMd.getTitle( null ) != null ) {
writer.writeCharacters( ftMd.getTitle( null ).getString() );
} else {
writer.writeCharacters( prefix + ":" + ftName.getLocalPart() );
writer.writeCharacters( ftName.getLocalPart() );
}
writer.writeEndElement();

Expand Down Expand Up @@ -995,7 +995,7 @@ void export200()
if ( ftMd != null && ftMd.getTitle( null ) != null ) {
writer.writeCharacters( ftMd.getTitle( null ).getString() );
} else {
writer.writeCharacters( prefix + ":" + ftName.getLocalPart() );
writer.writeCharacters( ftName.getLocalPart() );
}
writer.writeEndElement();

Expand Down

0 comments on commit d3d3019

Please sign in to comment.