From 1e8b24eabbd481c057672d175e81198a91fb4c28 Mon Sep 17 00:00:00 2001 From: wassa Date: Mon, 16 Dec 2002 22:17:20 +0000 Subject: [PATCH] Fixed a misleading log message. git-svn-id: https://subversion.switch.ch/svn/shibboleth/java-idp/trunk@377 ab3bd59b-922f-494d-bb5f-6f0a3c29deca --- .../shibboleth/aa/arp/provider/ResourceTreeMatchFunction.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/edu/internet2/middleware/shibboleth/aa/arp/provider/ResourceTreeMatchFunction.java b/src/edu/internet2/middleware/shibboleth/aa/arp/provider/ResourceTreeMatchFunction.java index f48f4f8..ef9ea9a 100755 --- a/src/edu/internet2/middleware/shibboleth/aa/arp/provider/ResourceTreeMatchFunction.java +++ b/src/edu/internet2/middleware/shibboleth/aa/arp/provider/ResourceTreeMatchFunction.java @@ -73,9 +73,9 @@ public class ResourceTreeMatchFunction implements MatchFunction { throws MatchingException { if (!(arpComponent instanceof String) && !(requestComponent instanceof URL)) { - log.error("Invalid use of ARP matching function (ExacthSharMatchFunction)."); + log.error("Invalid use of ARP matching function (ResourceTreeMatchFunction)."); throw new MatchingException( - "Invalid use of ARP matching function (ExacthSharMatchFunction)."); + "Invalid use of ARP matching function (ResourceTreeMatchFunction)."); } URL arpURL = null; -- 1.7.10.4