Skip to content
Snippets Groups Projects

Iss #157 - Add email obfuscation to the status json return

Merged Iss #157 - Add email obfuscation to the status json return
Merged Martin Lowe requested to merge malowe/main/157 into main
2 files
+ 13
2
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -80,7 +80,7 @@ public class EclipseQuteTemplateExtensions {
* @param email the address to obfuscate
* @return the obfuscated address, or empty string if (the string could not be parsed as an email address.
*/
static String obfuscateEmail(String email) {
public static String obfuscateEmail(String email) {
if (StringUtils.isBlank(email)) {
return "";
}
Loading