google / cityhash

Automatically exported from code.google.com/p/cityhash

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

UnsignedLongs.join error

GoogleCodeExporter opened this issue · comments

UnsignedLongs.join does not treat the first long from its arguments as unsigned.

builder.append(array[0]);
for (int i = 1; i < array.length; i++) {
  builder.append(separator).append(toString(array[i]));
}

where it should be builder.append(toString(array[0])).

Original issue reported on code.google.com by wasserman.louis on 9 Apr 2012 at 10:37

Oh crap wrong Google Code site, I am a n00b.

Original comment by wasserman.louis on 9 Apr 2012 at 10:38

Original comment by gp...@google.com on 3 Oct 2012 at 5:01

  • Changed state: Invalid