Author: oching
Date: Sun May 1 03:44:01 2011
New Revision: 1098217
URL: http://svn.apache.org/viewvc?rev=1098217&view=rev
Log:
update IOException construction to make it compile for java 1.5 (while not yet
agreed whether to set npanday to 1.6)
Modified:
incubator/npanday/trunk/plugins/maven-fxcop-plugin/src/main/java/npanday/plugin/fxcop/FxCopAggregateMojo.java
incubator/npanday/trunk/plugins/netplugins/NPanday.Plugin.Settings/javabinding/src/main/java/NPanday/Plugin/Settings/SettingsGeneratorMojo.java
Modified:
incubator/npanday/trunk/plugins/maven-fxcop-plugin/src/main/java/npanday/plugin/fxcop/FxCopAggregateMojo.java
URL:
http://svn.apache.org/viewvc/incubator/npanday/trunk/plugins/maven-fxcop-plugin/src/main/java/npanday/plugin/fxcop/FxCopAggregateMojo.java?rev=1098217&r1=1098216&r2=1098217&view=diff
==============================================================================
---
incubator/npanday/trunk/plugins/maven-fxcop-plugin/src/main/java/npanday/plugin/fxcop/FxCopAggregateMojo.java
(original)
+++
incubator/npanday/trunk/plugins/maven-fxcop-plugin/src/main/java/npanday/plugin/fxcop/FxCopAggregateMojo.java
Sun May 1 03:44:01 2011
@@ -190,7 +190,7 @@ public class FxCopAggregateMojo
}
catch ( XmlPullParserException e )
{
- throw new IOException( "NPANDAY-xxx-005: Unable to read pom file",
e );
+ throw new IOException( "NPANDAY-xxx-005: Unable to read pom file"
);
}
return model;
}
Modified:
incubator/npanday/trunk/plugins/netplugins/NPanday.Plugin.Settings/javabinding/src/main/java/NPanday/Plugin/Settings/SettingsGeneratorMojo.java
URL:
http://svn.apache.org/viewvc/incubator/npanday/trunk/plugins/netplugins/NPanday.Plugin.Settings/javabinding/src/main/java/NPanday/Plugin/Settings/SettingsGeneratorMojo.java?rev=1098217&r1=1098216&r2=1098217&view=diff
==============================================================================
---
incubator/npanday/trunk/plugins/netplugins/NPanday.Plugin.Settings/javabinding/src/main/java/NPanday/Plugin/Settings/SettingsGeneratorMojo.java
(original)
+++
incubator/npanday/trunk/plugins/netplugins/NPanday.Plugin.Settings/javabinding/src/main/java/NPanday/Plugin/Settings/SettingsGeneratorMojo.java
Sun May 1 03:44:01 2011
@@ -232,7 +232,7 @@ public class SettingsGeneratorMojo
}
catch ( Exception e )
{
- throw new IOException( "Error opening/parsing settings.xml", e );
+ throw new IOException( "Error opening/parsing settings.xml" );
}
return false;