Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
import fr.paris.lutece.portal.service.plugin.PluginService;
import fr.paris.lutece.portal.service.regularexpression.IRegularExpressionService;
import jakarta.enterprise.context.ApplicationScoped;
import jakarta.inject.Named;
import fr.paris.lutece.portal.service.util.AppLogService;

import java.util.List;
Expand All @@ -54,6 +55,7 @@
*
*/
@ApplicationScoped
@Named("regularExpressionService")
public class RegularExpressionService implements IRegularExpressionService
{
/**
Expand Down Expand Up @@ -253,4 +255,4 @@ public static void formatRichTextAttributes( RegularExpression regularExpression
regularExpression.setErrorMessage( RichTextContentService.getContent( regularExpression.getErrorMessage( ) ) );
regularExpression.setInformationMessage( RichTextContentService.getContent( regularExpression.getInformationMessage( ) ) );
}
}
}