Update of 
/var/cvs/contributions/aselect/src/org/mmbase/security/implementation/aselect
In directory james.mmbase.org:/tmp/cvs-serv30700

Modified Files:
        ASelectAuthentication.java 
Log Message:
StringBuffer -> StringBuilder


See also: 
http://cvs.mmbase.org/viewcvs/contributions/aselect/src/org/mmbase/security/implementation/aselect


Index: ASelectAuthentication.java
===================================================================
RCS file: 
/var/cvs/contributions/aselect/src/org/mmbase/security/implementation/aselect/ASelectAuthentication.java,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -b -r1.15 -r1.16
--- ASelectAuthentication.java  29 Jan 2009 21:47:36 -0000      1.15
+++ ASelectAuthentication.java  29 Jan 2009 21:52:13 -0000      1.16
@@ -47,7 +47,7 @@
  * @author Arnout Hannink     (Alfa & Ariss)
  * @author Michiel Meeuwissen (Publieke Omroep Internet Services)
  *
- * @version $Id: ASelectAuthentication.java,v 1.15 2009/01/29 21:47:36 michiel 
Exp $
+ * @version $Id: ASelectAuthentication.java,v 1.16 2009/01/29 21:52:13 michiel 
Exp $
  * @since  MMBase-1.7
  */
 public class ASelectAuthentication extends CloudContextAuthentication {
@@ -145,7 +145,7 @@
      */
     private String getNodeTextValue(Node n) {
         NodeList nl = n.getChildNodes();
-        StringBuffer res = new StringBuffer();
+        StringBuilder res = new StringBuilder();
         for (int i = 0; i < nl.getLength(); i++) {
             Node textnode = nl.item(i);
             if (textnode.getNodeType() == Node.TEXT_NODE) {
_______________________________________________
Cvs mailing list
[email protected]
http://lists.mmbase.org/mailman/listinfo/cvs

Reply via email to