Author: olamy Date: Wed Sep 10 04:09:14 2008 New Revision: 693788 URL: http://svn.apache.org/viewvc?rev=693788&view=rev Log: fix compilation due to plexus-interpolation upgrade
Modified: maven/plugins/trunk/maven-war-plugin/src/main/java/org/apache/maven/plugin/war/util/MappingUtils.java Modified: maven/plugins/trunk/maven-war-plugin/src/main/java/org/apache/maven/plugin/war/util/MappingUtils.java URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-war-plugin/src/main/java/org/apache/maven/plugin/war/util/MappingUtils.java?rev=693788&r1=693787&r2=693788&view=diff ============================================================================== --- maven/plugins/trunk/maven-war-plugin/src/main/java/org/apache/maven/plugin/war/util/MappingUtils.java (original) +++ maven/plugins/trunk/maven-war-plugin/src/main/java/org/apache/maven/plugin/war/util/MappingUtils.java Wed Sep 10 04:09:14 2008 @@ -19,6 +19,8 @@ * under the License. */ +import java.util.Collections; +import java.util.List; import java.util.Properties; import org.apache.maven.artifact.Artifact; @@ -95,6 +97,18 @@ return properties.getProperty( key ); } + public void clearFeedback() + { + // nothing here + + } + + public List getFeedback() + { + // nothing here just NPE free + return Collections.EMPTY_LIST; + } + } }