Author: sebb
Date: Mon Mar 19 15:44:22 2012
New Revision: 1302512

URL: http://svn.apache.org/viewvc?rev=1302512&view=rev
Log:
PrintWriter does not throw IOException

Modified:
    
commons/proper/bcel/trunk/src/main/java/org/apache/bcel/util/AttributeHTML.java

Modified: 
commons/proper/bcel/trunk/src/main/java/org/apache/bcel/util/AttributeHTML.java
URL: 
http://svn.apache.org/viewvc/commons/proper/bcel/trunk/src/main/java/org/apache/bcel/util/AttributeHTML.java?rev=1302512&r1=1302511&r2=1302512&view=diff
==============================================================================
--- 
commons/proper/bcel/trunk/src/main/java/org/apache/bcel/util/AttributeHTML.java 
(original)
+++ 
commons/proper/bcel/trunk/src/main/java/org/apache/bcel/util/AttributeHTML.java 
Mon Mar 19 15:44:22 2012
@@ -74,13 +74,12 @@ final class AttributeHTML implements org
     }
 
 
-    final void writeAttribute( Attribute attribute, String anchor ) throws 
IOException {
+    final void writeAttribute( Attribute attribute, String anchor ) {
         writeAttribute(attribute, anchor, 0);
     }
 
 
-    final void writeAttribute( Attribute attribute, String anchor, int 
method_number )
-            throws IOException {
+    final void writeAttribute( Attribute attribute, String anchor, int 
method_number ) {
         byte tag = attribute.getTag();
         int index;
         if (tag == ATTR_UNKNOWN) {


Reply via email to