Skip to content

Commit

Permalink
Issue #6497 - warn on use of AllowSymLinkAliasChecker
Browse files Browse the repository at this point in the history
Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
  • Loading branch information
lachlan-roberts committed Oct 12, 2021
1 parent 401472f commit 12ee696
Showing 1 changed file with 5 additions and 0 deletions.
Expand Up @@ -40,6 +40,11 @@ public class AllowSymLinkAliasChecker implements AliasCheck
{
private static final Logger LOG = Log.getLogger(AllowSymLinkAliasChecker.class);

public AllowSymLinkAliasChecker()
{
LOG.warn(getClass().getSimpleName() + " is deprecated");
}

@Override
public boolean check(String uri, Resource resource)
{
Expand Down

0 comments on commit 12ee696

Please sign in to comment.