Unfortunately the current formatter template doesn't seem quite
perfect yet. I did a global format but things like:
public AbderaClient(
Abdera abdera,
String useragent) {
this(abdera,useragent,initCache(abdera));
}
turn in to
public AbderaClient(
Abdera abdera,
String useragent) {
this(abdera, useragent, initCache(abdera));
}
but what i'd really like would be
public AbderaClient(Abdera abdera, String useragent) {
this(abdera, useragent, initCache(abdera));
}
so i'd like to try tweaking the formatter a bit more before committing
a reformat. If anyone has any better settings please do commit or
share :)
...ant
On Tue, May 18, 2010 at 7:04 PM, ck <[email protected]> wrote:
> +1
>
> 2010/5/18 ant elder <[email protected]>:
>> How about doing the global format tomorrow evening (GMT)? Would that
>> fit in, remember that if anyone has uncommitted changes this is likely
>> to cause conflicts making it hard to merge in updates afterwards.
>>
>> ...ant
>>
>> On Sun, May 16, 2010 at 11:14 AM, ck <[email protected]> wrote:
>>> looks good to me.
>>>
>>> Would be great if you could you send a short notice before
>>> reformatting the trunk.
>>>
>>>>
>>>> I've added an eclipse formatter template at:
>>>>
>>>> https://svn.apache.org/repos/asf/abdera/etc
>>>>
>>>> Feel free to hack it about, the main things in it (which reflect my
>>>> preferences) are:
>>>> - uses spaces not tabs
>>>> - uses braces always on the same line
>>>> - doesn't format comments
>>>> - never joins lines
>>>>
>>>> Once we have something everyone is happy with should we do a global
>>>> format of the entire source tree to get it all into a consistent
>>>> state?
>>>>
>>>> ...ant
>>>>
>>>
>>
>