diff --git a/removeAnnotation.pl b/removeAnnotation.pl deleted file mode 100755 index 5e99a3cb..00000000 --- a/removeAnnotation.pl +++ /dev/null @@ -1,22 +0,0 @@ -# /usr/bin/perl -# removeAnnotaion.pl -# scripte to remove all of the annotation tags (xs:annotation) -# from an XML schema file. -# ------------------------------------------------------------------- -# usage: perl removeAnnotation.pl outputfile.xsd - -while(<>) -{ - if(m!*!) - { - while(not m!*!) - { - s!!!; - $_ = <>; - } - # print ''; - } - s!!!; - print; -} -s!\n\s*!!g;