removed apache commons dependency

This commit is contained in:
Arndt Brenschede 2019-10-05 16:44:42 +02:00
parent 853e3e10d6
commit 89ef900b7c
3 changed files with 29 additions and 10 deletions

View file

@ -0,0 +1,24 @@
package btools.util;
/**
* Some methods for String handling
*/
public class StringUtils
{
/**
* Escape a literal to put into a json document
*/
public static String escapeJson( String s )
{
return s;
}
/**
* Escape a literal to put into a xml document
*/
public static String escapeXml10( String s )
{
return s;
}
}