Skip to content

Commit c8aca47

Browse files
committed
Make constructor protected
1 parent 9668209 commit c8aca47

File tree

1 file changed

+1
-2
lines changed
  • spring-security-advanced-authentication-ui/src/main/java/software/xdev/spring/security/web/authentication/ui/extendable/filters

1 file changed

+1
-2
lines changed

spring-security-advanced-authentication-ui/src/main/java/software/xdev/spring/security/web/authentication/ui/extendable/filters/HtmlTemplates.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ public static Builder fromTemplate(final String template)
4242
return new Builder(template);
4343
}
4444

45-
@SuppressWarnings("checkstyle:FinalClass")
4645
public static class Builder
4746
{
4847
// Improvement: Compile once
@@ -51,7 +50,7 @@ public static class Builder
5150
protected final String template;
5251
protected final Map<String, String> values = new HashMap<>();
5352

54-
private Builder(final String template)
53+
protected Builder(final String template)
5554
{
5655
this.template = template;
5756
}

0 commit comments

Comments
 (0)