return true;
}
public static String random(final int size) {
RandomGenerator randomString = new RandomGenerator(size);
return randomString.generate();
}
public static String replace(final InputStream input, final Map<String, String> replaces) throws IOException {
return Strings.replace(new InputStreamReader(input), replaces);
}