Add @FunctionalInterface annotation to TextEscaper

This commit is contained in:
David
2017-09-01 20:40:57 +02:00
parent ff9d138f63
commit c2bc4b3209

View File

@@ -1,7 +1,6 @@
package j2html.utils;
@FunctionalInterface
public interface TextEscaper {
String escape(String text);
}