[Minor] Made methods public

This commit is contained in:
Robert von Burg 2024-03-04 17:21:55 +01:00
parent f850367d2b
commit 76d38e9af0
Signed by: eitch
GPG Key ID: 75DB9C85C74331F7
1 changed files with 2 additions and 2 deletions

View File

@ -96,7 +96,7 @@ public class CreateNotificationService extends AbstractService<JsonServiceArgume
return notification;
}
protected static Set<String> getSupportedLanguages(StrolchAgent agent) {
public static Set<String> getSupportedLanguages(StrolchAgent agent) {
return agent
.getStrolchConfiguration()
.getRuntimeConfiguration()
@ -106,7 +106,7 @@ public class CreateNotificationService extends AbstractService<JsonServiceArgume
.collect(Collectors.toSet());
}
protected static Resource newNotification() {
public static Resource newNotification() {
ResourceBuilder notificationBuilder = new ResourceBuilder(TYPE_NOTIFICATION, TYPE_NOTIFICATION)
.bag(BAG_VISIBILITY, TYPE_VISIBILITY)