You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@santuario.apache.org by co...@apache.org on 2013/01/14 19:06:48 UTC

svn commit: r1433016 - /santuario/xml-security-java/trunk/src/main/java/org/apache/xml/security/utils/UnsyncByteArrayOutputStream.java

Author: coheigea
Date: Mon Jan 14 18:06:48 2013
New Revision: 1433016

URL: http://svn.apache.org/viewvc?rev=1433016&view=rev
Log:
Fixed last commit

Modified:
    santuario/xml-security-java/trunk/src/main/java/org/apache/xml/security/utils/UnsyncByteArrayOutputStream.java

Modified: santuario/xml-security-java/trunk/src/main/java/org/apache/xml/security/utils/UnsyncByteArrayOutputStream.java
URL: http://svn.apache.org/viewvc/santuario/xml-security-java/trunk/src/main/java/org/apache/xml/security/utils/UnsyncByteArrayOutputStream.java?rev=1433016&r1=1433015&r2=1433016&view=diff
==============================================================================
--- santuario/xml-security-java/trunk/src/main/java/org/apache/xml/security/utils/UnsyncByteArrayOutputStream.java (original)
+++ santuario/xml-security-java/trunk/src/main/java/org/apache/xml/security/utils/UnsyncByteArrayOutputStream.java Mon Jan 14 18:06:48 2013
@@ -18,7 +18,6 @@
  */
 package org.apache.xml.security.utils;
 
-import java.io.IOException;
 import java.io.OutputStream;
 
 /**
@@ -84,10 +83,6 @@ public class UnsyncByteArrayOutputStream
         buf = new byte[INITIAL_SIZE];
     }
     
-    public void close() throws IOException {
-        buf = null;
-    }
-
     private void expandSize(int newPos) {
         int newSize = size;
         while (newPos > newSize) {