o Fix MNG-781 (skip null configurations).

That issue is now renamed to the more general problem.


git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@239964 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Kenney Westerhof 2005-08-24 23:26:32 +00:00
parent f437fb5dc2
commit ca3882cde6
1 changed files with 5 additions and 0 deletions

View File

@ -675,6 +675,11 @@ public class EclipseWriter
{
Xpp3Dom pluginConfig = (Xpp3Dom) plugin.getConfiguration();
if ( pluginConfig == null )
{
return;
}
String source = null;
Xpp3Dom sourceChild = pluginConfig.getChild( "source" );