Re: [Asterisk-java-users] Possible minor bug in ReplyBuilderImpl
Brought to you by:
srt
From: Stefan R. <sr...@re...> - 2005-03-31 20:42:08
|
On Thu, 2005-03-31 at 11:04 -0800, Steve Drach wrote: > I think the blank is in the wrong place -- >=20 > diff -r1.1 ReplyBuilderImpl.java > 41c41 > < .compile("^200 result=3D\\S+( \\(.*\\) )?(.+)$"); > --- > > .compile("^200 result=3D\\S+ (\\(.*\\) )?(.+)$"); >=20 Yep, i fixed it in latest CVS though it had no impact. The additional space included in the first group is stripped of by applying the ADDITIONAL_ATTRIBUTE_PATTERN "(\\S+)=3D(\\S+)" later on. =3DStefan |