From 1ebf6876577a92c83f29da9bcd4e0774bf878b48 Mon Sep 17 00:00:00 2001 From: oburn Date: Tue, 25 Feb 2003 05:47:43 +0000 Subject: [PATCH] Fix cause of GUMP failure. --- .../com/puppycrawl/tools/checkstyle/PropertyResolver.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/checkstyle/com/puppycrawl/tools/checkstyle/PropertyResolver.java b/src/checkstyle/com/puppycrawl/tools/checkstyle/PropertyResolver.java index 12fdde889..8f08e1415 100644 --- a/src/checkstyle/com/puppycrawl/tools/checkstyle/PropertyResolver.java +++ b/src/checkstyle/com/puppycrawl/tools/checkstyle/PropertyResolver.java @@ -34,10 +34,10 @@ public interface PropertyResolver { /** * Resolves a property name to it's value. - * @param propertyName the name of the property. + * @param aName the name of the property. * @return the value that is associated with propertyName. * @throws CheckstyleException if the propertyName cannot be reolved */ - String resolve(String propertyName) + String resolve(String aName) throws CheckstyleException; }