o Added generics

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@806336 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benjamin Bentmann 2009-08-20 20:11:15 +00:00
parent 0fa8f7dc93
commit c8bff4412a
1 changed files with 2 additions and 2 deletions

View File

@ -94,7 +94,7 @@ public class PluginDescriptorBuilder
PlexusConfiguration[] dependencyConfigurations = c.getChild( "dependencies" ).getChildren( "dependency" );
List dependencies = new ArrayList();
List<ComponentDependency> dependencies = new ArrayList<ComponentDependency>();
for ( int i = 0; i < dependencyConfigurations.length; i++ )
{
@ -250,7 +250,7 @@ public class PluginDescriptorBuilder
PlexusConfiguration[] parameterConfigurations = c.getChild( "parameters" ).getChildren( "parameter" );
List parameters = new ArrayList();
List<Parameter> parameters = new ArrayList<Parameter>();
for ( int i = 0; i < parameterConfigurations.length; i++ )
{