Skip to content

Commit

Permalink
Adapting Bundle-Behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
cuioss committed Nov 2, 2023
1 parent b9b8927 commit dbf170e
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
import de.cuioss.portal.common.bundle.ResourceBundleLocator;
import de.cuioss.portal.common.priority.PortalPriorities;
import lombok.EqualsAndHashCode;
import lombok.ToString;

/**
* Defines the base bundles "de.cuioss.jsf.api.l18n.messages" with the Priority
Expand All @@ -34,7 +33,6 @@
@Priority(PortalPriorities.PORTAL_CORE_LEVEL)
@ApplicationScoped
@EqualsAndHashCode
@ToString
public class CuiJSfResourceBundleLocator implements ResourceBundleLocator {

private static final long serialVersionUID = -8478481710191113463L;
Expand All @@ -46,4 +44,8 @@ public Optional<String> getBundlePath() {
return Optional.of(PATH);
}

@Override
public String toString() {
return "%s: Path='%s'".formatted(getClass().getName(), PATH);
}
}

0 comments on commit dbf170e

Please sign in to comment.