xueyin87 / guava-libraries

Automatically exported from code.google.com/p/guava-libraries
Apache License 2.0
0 stars 0 forks source link

Simplification to Primitive Join Methods #316

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
In the spirit of code re-use :-)

public static String join(String separator, double... array) {
  return Joiner.on(checkNotNull(seperator)).join(array);
}

Original issue reported on code.google.com by brianopp on 16 Jan 2010 at 7:49

GoogleCodeExporter commented 9 years ago
Try it: it doesn't do what you think it does! :-)

Original comment by kevinb@google.com on 19 Jan 2010 at 3:45

GoogleCodeExporter commented 9 years ago
This issue has been migrated to GitHub.

It can be found at https://github.com/google/guava/issues/<id>

Original comment by cgdecker@google.com on 1 Nov 2014 at 4:16

GoogleCodeExporter commented 9 years ago

Original comment by cgdecker@google.com on 3 Nov 2014 at 9:10