On Mon, Jan 26, 2015 at 7:03 AM, Benedikt Ritter wrote:
> Hello Adrian
>
> 2015-01-24 19:43 GMT+01:00 Adrian Crum :
>
>> Slightly off-topic but somewhat related...
>>
>> I saw a recent commit where a "performance improvement" went something
>> like this:
>>
>> StringBuilder sb = new StringBuilder(
2015-01-26 14:05 GMT+01:00 Gary Gregory :
> On Mon, Jan 26, 2015 at 7:03 AM, Benedikt Ritter
> wrote:
>
> > Hello Adrian
> >
> > 2015-01-24 19:43 GMT+01:00 Adrian Crum <
> adrian.c...@sandglass-software.com
> > >:
> >
> > > Slightly off-topic but somewhat related...
> > >
> > > I saw a recent com
On Mon, Jan 26, 2015 at 7:03 AM, Benedikt Ritter wrote:
> Hello Adrian
>
> 2015-01-24 19:43 GMT+01:00 Adrian Crum >:
>
> > Slightly off-topic but somewhat related...
> >
> > I saw a recent commit where a "performance improvement" went something
> > like this:
> >
> > StringBuilder sb = new Strin
Hello Adrian
2015-01-24 19:43 GMT+01:00 Adrian Crum :
> Slightly off-topic but somewhat related...
>
> I saw a recent commit where a "performance improvement" went something
> like this:
>
> StringBuilder sb = new StringBuilder();
> sb.append("foo");
>
> was replaced with
>
> StringBuilder sb = n
On 1/24/15 1:16 PM, Oliver Heger wrote:
> Hi Thomas,
>
> On 24.01.2015 19:21, Thomas Neidhart wrote:
>> Hi,
>>
>> from time to time some researchers trying to find performance
>> bugs in
>> open-source software create issues for collections.
>>
>> One of the easy targets is the Collection#retainAll
Hi Thomas,
On 24.01.2015 19:21, Thomas Neidhart wrote:
Hi,
from time to time some researchers trying to find performance bugs in
open-source software create issues for collections.
One of the easy targets is the Collection#retainAll(Collection) method
as the default implementation in AbstractC
Slightly off-topic but somewhat related...
I saw a recent commit where a "performance improvement" went something
like this:
StringBuilder sb = new StringBuilder();
sb.append("foo");
was replaced with
StringBuilder sb = new StringBuilder("foo");
The change reduced the code by one line, but
Hi,
from time to time some researchers trying to find performance bugs in
open-source software create issues for collections.
One of the easy targets is the Collection#retainAll(Collection) method
as the default implementation in AbstractCollection calls contains on
the provided collection.
Now,