Skip to content

Commit

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

Expand Down

0 comments on commit b4e6c15

Please sign in to comment.