mirror of https://github.com/apache/maven.git
o Updated method signatures due to r721715
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@721716 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1927fa4ddf
commit
4f4358ee02
|
@ -45,7 +45,7 @@ public class BuildExtensionListener
|
|||
|
||||
private List<BuildExtension> buildExtensions = new ArrayList<BuildExtension>();
|
||||
|
||||
public void fire( List<ModelContainer> modelContainers )
|
||||
public void fire( List<? extends ModelContainer> modelContainers )
|
||||
{
|
||||
if ( !inBuild )
|
||||
{
|
||||
|
|
|
@ -103,7 +103,7 @@ public class PomTransformer
|
|||
/**
|
||||
* @see ModelTransformer#transformToDomainModel(java.util.List, java.util.List)
|
||||
*/
|
||||
public final DomainModel transformToDomainModel( List<ModelProperty> properties, List<ModelEventListener> eventListeners )
|
||||
public final DomainModel transformToDomainModel( List<ModelProperty> properties, List<? extends ModelEventListener> eventListeners )
|
||||
throws IOException
|
||||
{
|
||||
if ( properties == null )
|
||||
|
@ -298,7 +298,7 @@ public class PomTransformer
|
|||
/**
|
||||
* @see ModelTransformer#transformToModelProperties(java.util.List)
|
||||
*/
|
||||
public final List<ModelProperty> transformToModelProperties(List<DomainModel> domainModels
|
||||
public final List<ModelProperty> transformToModelProperties(List<? extends DomainModel> domainModels
|
||||
)
|
||||
throws IOException
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue