You are viewing a plain text version of this content. The canonical link for it is here.
Posted to wss4j-dev@ws.apache.org by co...@apache.org on 2009/06/09 13:29:07 UTC

svn commit: r782958 - /webservices/wss4j/trunk/src/org/apache/ws/security/components/crypto/CryptoBase.java

Author: coheigea
Date: Tue Jun  9 11:29:06 2009
New Revision: 782958

URL: http://svn.apache.org/viewvc?rev=782958&view=rev
Log:
[WSS-195] - Changed StringBuilder to StringBuffer to make it JDK 1.4.x compatible.

Modified:
    webservices/wss4j/trunk/src/org/apache/ws/security/components/crypto/CryptoBase.java

Modified: webservices/wss4j/trunk/src/org/apache/ws/security/components/crypto/CryptoBase.java
URL: http://svn.apache.org/viewvc/webservices/wss4j/trunk/src/org/apache/ws/security/components/crypto/CryptoBase.java?rev=782958&r1=782957&r2=782958&view=diff
==============================================================================
--- webservices/wss4j/trunk/src/org/apache/ws/security/components/crypto/CryptoBase.java (original)
+++ webservices/wss4j/trunk/src/org/apache/ws/security/components/crypto/CryptoBase.java Tue Jun  9 11:29:06 2009
@@ -228,7 +228,7 @@
     
     protected static String createKeyStoreErrorMessage(KeyStore keystore) throws KeyStoreException {
         Enumeration aliases = keystore.aliases();
-        StringBuilder sb = new StringBuilder(keystore.size() * 7);
+        StringBuffer sb = new StringBuffer(keystore.size() * 7);
         boolean firstAlias = true;
         while (aliases.hasMoreElements()) {
             if (!firstAlias) {



---------------------------------------------------------------------
To unsubscribe, e-mail: wss4j-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: wss4j-dev-help@ws.apache.org