This is an automated email from the ASF dual-hosted git repository.

slachiewicz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-integration-testing.git

commit 308f0f5629800136ad1b4918832a1ccb6bf6dea2
Author: Sylwester Lachiewicz <slachiew...@apache.org>
AuthorDate: Thu Nov 8 02:47:31 2018 +0100

    [MNG-6481] Cleanup auto generated methods
    
    Remove open tasks in Jenkins
---
 .../plexus/util/xml/pull/MXSerializer.java         | 69 +++++-----------------
 .../wagon/providers/coreit/CoreItHttpWagon.java    |  3 +-
 .../maven/wagon/providers/coreit/CoreItWagon.java  |  2 +-
 3 files changed, 16 insertions(+), 58 deletions(-)

diff --git 
a/core-it-support/core-it-plugins/maven-it-plugin-plexus-utils-new/src/main/java/org/codehaus/plexus/util/xml/pull/MXSerializer.java
 
b/core-it-support/core-it-plugins/maven-it-plugin-plexus-utils-new/src/main/java/org/codehaus/plexus/util/xml/pull/MXSerializer.java
index 52f482c..bcbd797 100644
--- 
a/core-it-support/core-it-plugins/maven-it-plugin-plexus-utils-new/src/main/java/org/codehaus/plexus/util/xml/pull/MXSerializer.java
+++ 
b/core-it-support/core-it-plugins/maven-it-plugin-plexus-utils-new/src/main/java/org/codehaus/plexus/util/xml/pull/MXSerializer.java
@@ -37,149 +37,112 @@ public class MXSerializer
     }
 
     public XmlSerializer attribute( String namespace, String name, String 
value )
-        throws IOException, IllegalArgumentException, IllegalStateException
     {
-        // TODO Auto-generated method stub
         return null;
     }
 
     public void cdsect( String text )
-        throws IOException, IllegalArgumentException, IllegalStateException
     {
-        // TODO Auto-generated method stub
-
+        // ignore
     }
 
     public void comment( String text )
-        throws IOException, IllegalArgumentException, IllegalStateException
     {
-        // TODO Auto-generated method stub
-
+        // ignore
     }
 
     public void docdecl( String text )
-        throws IOException, IllegalArgumentException, IllegalStateException
     {
-        // TODO Auto-generated method stub
-
+        // ignore
     }
 
     public void endDocument()
-        throws IOException, IllegalArgumentException, IllegalStateException
     {
-        // TODO Auto-generated method stub
-
+        // ignore
     }
 
     public XmlSerializer endTag( String namespace, String name )
-        throws IOException, IllegalArgumentException, IllegalStateException
     {
-        // TODO Auto-generated method stub
         return null;
     }
 
     public void entityRef( String text )
-        throws IOException, IllegalArgumentException, IllegalStateException
     {
-        // TODO Auto-generated method stub
-
+        // ignore
     }
 
     public void flush()
-        throws IOException
     {
-        // TODO Auto-generated method stub
-
+        // ignore
     }
 
     public int getDepth()
     {
-        // TODO Auto-generated method stub
         return 0;
     }
 
     public boolean getFeature( String name )
     {
-        // TODO Auto-generated method stub
         return false;
     }
 
     public String getName()
     {
-        // TODO Auto-generated method stub
         return null;
     }
 
     public String getNamespace()
     {
-        // TODO Auto-generated method stub
         return null;
     }
 
     public String getPrefix( String namespace, boolean generatePrefix )
-        throws IllegalArgumentException
     {
-        // TODO Auto-generated method stub
         return null;
     }
 
     public Object getProperty( String name )
     {
-        // TODO Auto-generated method stub
         return null;
     }
 
     public void ignorableWhitespace( String text )
-        throws IOException, IllegalArgumentException, IllegalStateException
     {
-        // TODO Auto-generated method stub
-
+        // ignore
     }
 
     public void processingInstruction( String text )
-        throws IOException, IllegalArgumentException, IllegalStateException
     {
-        // TODO Auto-generated method stub
-
+        // ignore
     }
 
     public void setFeature( String name, boolean state )
-        throws IllegalArgumentException, IllegalStateException
     {
-        // TODO Auto-generated method stub
-
+        // ignore
     }
 
     public void setOutput( OutputStream os, String encoding )
-        throws IOException, IllegalArgumentException, IllegalStateException
     {
-        // TODO Auto-generated method stub
-
+        // ignore
     }
 
     public void setPrefix( String prefix, String namespace )
-        throws IOException, IllegalArgumentException, IllegalStateException
     {
-        // TODO Auto-generated method stub
-
+        // ignore
     }
 
     public void setProperty( String name, Object value )
-        throws IllegalArgumentException, IllegalStateException
     {
-        // TODO Auto-generated method stub
-
+        // ignore
     }
 
     public void startDocument( String encoding, Boolean standalone )
-        throws IOException, IllegalArgumentException, IllegalStateException
     {
-        // TODO Auto-generated method stub
-
+        // ignore
     }
 
     public XmlSerializer startTag( String namespace, String name )
-        throws IOException, IllegalArgumentException, IllegalStateException
+        throws IOException
     {
         output.write( name );
 
@@ -187,16 +150,12 @@ public class MXSerializer
     }
 
     public XmlSerializer text( String text )
-        throws IOException, IllegalArgumentException, IllegalStateException
     {
-        // TODO Auto-generated method stub
         return null;
     }
 
     public XmlSerializer text( char[] buf, int start, int len )
-        throws IOException, IllegalArgumentException, IllegalStateException
     {
-        // TODO Auto-generated method stub
         return null;
     }
 }
diff --git 
a/core-it-support/core-it-wagon/src/main/java/org/apache/maven/wagon/providers/coreit/CoreItHttpWagon.java
 
b/core-it-support/core-it-wagon/src/main/java/org/apache/maven/wagon/providers/coreit/CoreItHttpWagon.java
index ff0387d..6ff1148 100644
--- 
a/core-it-support/core-it-wagon/src/main/java/org/apache/maven/wagon/providers/coreit/CoreItHttpWagon.java
+++ 
b/core-it-support/core-it-wagon/src/main/java/org/apache/maven/wagon/providers/coreit/CoreItHttpWagon.java
@@ -170,7 +170,6 @@ public class CoreItHttpWagon
     public void openConnection()
         throws ConnectionException, AuthenticationException
     {
-        // TODO Auto-generated method stub
-
+        // ignore
     }
 }
diff --git 
a/core-it-support/core-it-wagon/src/main/java/org/apache/maven/wagon/providers/coreit/CoreItWagon.java
 
b/core-it-support/core-it-wagon/src/main/java/org/apache/maven/wagon/providers/coreit/CoreItWagon.java
index fddf5dc..f355493 100644
--- 
a/core-it-support/core-it-wagon/src/main/java/org/apache/maven/wagon/providers/coreit/CoreItWagon.java
+++ 
b/core-it-support/core-it-wagon/src/main/java/org/apache/maven/wagon/providers/coreit/CoreItWagon.java
@@ -181,7 +181,7 @@ public class CoreItWagon
     public void openConnection()
         throws ConnectionException, AuthenticationException
     {
-        // TODO Auto-generated method stub
+        // ignore
 
     }
 

Reply via email to