RE: [Asterisk-java-users] Is this a bug?
Brought to you by:
srt
From: Forte, G. \(GFORTE\) <gf...@ar...> - 2006-03-08 21:56:16
|
Jason, this is a shot in the dark but perhaps try a StringBuffer instead of a = String as it is supposed to be more efficient at handling = concatenations. Perhaps this will "fool" your production machine into = processing your code correctly. =20 StringBuffer sb =3D new StringBuffer("jason"); sb.append("clickforacall"); sb.append("com"); =20 Graham =20 =20 |