Refactor: Remove non-relevant modificators on transformContent
Some checks failed
SonarQube Scan / SonarQube Trigger (push) Failing after 19s

This commit is contained in:
Namu
2025-10-06 11:40:58 +02:00
parent 5b1619f34e
commit addedcab4d

View File

@@ -5,5 +5,5 @@ public interface NotificationDecoration {
* Each decoration apply a transformation on the content of the Notifications
* @return the content transformed
*/
public abstract String transformContent(String content);
String transformContent(String content);
}