I actually just got a message from "ANT" - a build server that is hiding 
behind our firewall. When you get back let's talk to Paul about making 
it a bit more visible.

Until then I can try spamming the list whenever ANT stops marching.
Jody

> My bad,
>
> Forgot to do a commit. Thanks Jody. It sure would be nice to have a
> build server for trunk back.
>
> Jody Garnett wrote:
>   
>> I have a test case on trunk that was failing because the following 
>> function was not defined:
>> static public String strReplace(String s1, String target,String 
>> replacement, boolean all )
>>
>> I have stubbed in the following in order to pass test cases ... is this 
>> example of a patch being shunted forward?
>>     
>>>      {
>>>         if( all ){
>>>             Pattern compile = Pattern.compile(target.toString(), 
>>> Pattern.LITERAL);
>>>             Matcher matcher = compile.matcher(s1);
>>>             return 
>>> matcher.replaceAll(Matcher.quoteReplacement(replacement.toString()));
>>>         }
>>>         else {
>>>             Pattern compile = Pattern.compile(target.toString(), 
>>> Pattern.LITERAL);
>>>             Matcher matcher = compile.matcher(s1);
>>>             return 
>>> matcher.replaceFirst(Matcher.quoteReplacement(replacement.toString()));
>>>         }
>>>      }
>>>       
>> -------------------------------------------------------------------------
>> This SF.net email is sponsored by: Splunk Inc.
>> Still grepping through log files to find problems?  Stop.
>> Now Search log events and configuration files using AJAX and a browser.
>> Download your FREE copy of Splunk now >>  http://get.splunk.com/
>> _______________________________________________
>> Geotools-devel mailing list
>> [email protected]
>> https://lists.sourceforge.net/lists/listinfo/geotools-devel
>>
>> !DSPAM:4007,46bd120b205611961014482!
>>
>>     
>
>
>   


-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
Geotools-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/geotools-devel

Reply via email to