summaryrefslogtreecommitdiff
path: root/inst/io/private/formatSVGstr.m
diff options
context:
space:
mode:
Diffstat (limited to 'inst/io/private/formatSVGstr.m')
-rw-r--r--inst/io/private/formatSVGstr.m24
1 files changed, 0 insertions, 24 deletions
diff --git a/inst/io/private/formatSVGstr.m b/inst/io/private/formatSVGstr.m
deleted file mode 100644
index a1310e6..0000000
--- a/inst/io/private/formatSVGstr.m
+++ /dev/null
@@ -1,24 +0,0 @@
-%% Copyright (c) 2011 Juan Pablo Carbajal <carbajal@ifi.uzh.ch>
-%%
-%% This program is free software: you can redistribute it and/or modify
-%% it under the terms of the GNU General Public License as published by
-%% the Free Software Foundation, either version 3 of the License, or
-%% any later version.
-%%
-%% This program is distributed in the hope that it will be useful,
-%% but WITHOUT ANY WARRANTY; without even the implied warranty of
-%% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-%% GNU General Public License for more details.
-%%
-%% You should have received a copy of the GNU General Public License
-%% along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-function svgF = formatSVGstr(svg)
-
- % Remove all newlines and tabs
- svgF = strrep(svg,"\n",' ');
- svgF = strrep(svgF,"\t",' ');
- % Remove consecutive blanks
- svgF = regexprep(svgF,' +',' ');
-
-end