[EMAIL PROTECTED] writes:
Hi,
>+ /**
>+ * For debugging purposes. Formats the arguments from
>+ * <code>argArray</code> and appends them to <code>buf</code>.
>+ */
>+ private static StringBuffer formatArgArray(StringBuffer buf,
>+ String[] argArray)
>+ {
>+ buf.append(argArray[0]).append('(');
>+ for (int i = 1; i < argArray.length; i++)
>+ {
>+ buf.append(' ').append(argArray[i]);
>+ }
>+ buf.append(" )");
>+ return buf;
> }
> }
That's almost the same code as you added to the factory logging. It
might be a candidate for factoring out into a helper method.
Best regards
Henning
--
Dipl.-Inf. (Univ.) Henning P. Schmiedehausen INTERMETA GmbH
[EMAIL PROTECTED] +49 9131 50 654 0 http://www.intermeta.de/
RedHat Certified Engineer -- Jakarta Turbine Development -- hero for hire
Linux, Java, perl, Solaris -- Consulting, Training, Development
4 - 8 - 15 - 16 - 23 - 42
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]