1. 0a2258e Use the type annotation version of @Nullable in the Java 8 branch by cushon · 6 years ago
  2. 6f22af4 Migrate from jsr305 @Nullable to Checker Framework @NullableDecl. [] by cpovirk · 7 years ago
  3. fd919e5 google-java-format MOST OF THE THINGS. by cpovirk · 7 years ago
  4. 328481c Import Map.Entry almost everywhere. by cpovirk · 7 years ago
  5. ec9ac20 Remove removal dates for non-@Beta deprecations. by cpovirk · 7 years ago
  6. 3a053c2 Clarify some docs on Ordering+Comparators by ronshapiro · 7 years ago
  7. 0c81386 Use diamond operator in collect by jijiang · 7 years ago
  8. 8f203c4 Avoid importing ImmutableList from Ordering. by lowasser · 7 years ago
  9. cf65da7 Harmonize NPE @throws clauses on FluentIterable.toXX() methods and friends by nickfelt · 7 years ago
  10. ba6e0cb Fix javadoc errors reported by IntelliJ IDEA. by Jonathan Bluett-Duncan · 8 years ago
  11. 4d02588 Fix 2 javadoc typos introduced by [] by kak · 8 years ago
  12. 586995d I think this recommendation will go over better. (It happens to be identical to by kevinb · 8 years ago
  13. 1e63909 Use GWT's provided Arrays.copyOf and Arrays.copyOfRange where possible by Andrei Korzhevskii · 8 years ago
  14. 709624f Go back to Collections.sort() instead of List.sort() to eliminate difference by kevinb · 8 years ago
  15. 73e382f Release Java 8 changes to Guava. by cgdecker · 8 years ago
  16. 5367a2d Add ImmutableList.sortedCopyOf. by lowasser · 8 years ago
  17. c27c673 Prepare for Java 8. by lowasser · 8 years ago
  18. bf011ac Fix typo just because. by kevinb · 8 years ago
  19. 572fec4 Update Ordering javadoc to explain the Java 8 situation. Now with branchiness. by kevinb · 8 years ago
  20. 8be4170 Fixed the typo for javadoc by cpovirk · 8 years ago
  21. a5b1ce8 Replace use of MapMaker.makeComputingMap in Ordering. by cgdecker · 8 years ago
  22. f0351dd Deprecate Ordering.binarySearch. by lowasser · 8 years ago
  23. 7037b86 Add a fallback in Ordering.leastOf to ensure the worst case of the quickselect component is bounded to O(k log k). by lowasser · 8 years ago
  24. a2a2ebb Remove @CheckReturnValue from individual classes now that it is in by kak · 8 years ago
  25. 318f975 Make effectively final fields final by cushon · 8 years ago
  26. 6575f8a Add @CheckReturnValue to the following classes: EvictingQueue, FluentIterable, and Ordering. by kak · 8 years ago
  27. 8ff4907 Reformat with google-java-format (a few hand corrections necessary). by kevinb · 9 years ago
  28. 1e58f23 Change link to OrderingExplained to GitHub location. by cgdecker · 9 years ago
  29. d871dea Try to teach users how to understand complex chained Ordering statements. by kevinb · 9 years ago
  30. cc3b0f8 Change Guava wiki links to new GitHub locations. by cgdecker · 9 years ago
  31. 7fa5082 Just cleaning up old @since tags. by kevinb · 9 years ago
  32. 7fd6f71 Add @since 13.0 to Ordering.allEqual(). by Chris Povirk · 10 years ago
  33. bbdac75 Add SortedCopyBenchmark and document its findings in the Ordering javadoc. by Colin Decker · 10 years ago
  34. c8eab95 Slightly adjust Ordering.from() doc to be more amenable to the jdk 8 future. by Chris Povirk · 11 years ago
  35. 74f36d8 Clarify the performance improvements of Ordering.sortedCopy over alternative implementations. by Chris Povirk · 11 years ago
  36. adc5bb8 Use CollectPreconditions.checkNonnegative more widely in common.collect. by Chris Povirk · 11 years ago
  37. f8350eb In com/google/common javadoc, add explicit <p> before paragraph text following other block level closing tags (</h*>, </pre>, </table>). Without the <p>, a blank line may not be added between the text and block level elements such as <ul> that follows it. by Colin Decker · 11 years ago
  38. 2c9f00e Add explicit <p> at the start of paragraphs following an </ol> or </ul> tag in com/google/common javadoc. JDK7 javadoc without the <p> does not show a blank line after the list. by Colin Decker · 11 years ago
  39. 928b47f Random javadoc spruces for Maps.asMap/toMap and Ordering. by Colin Decker · 11 years ago
  40. 3d0bd8c Trivial cleanups: by Kurt Kluever · 11 years ago
  41. 5f26712 Fix typo in javadoc: the name of the method to override is "compare", not "compareTo". by Colin Decker · 11 years ago
  42. 6f061fe Minor collections cleanups. by Kurt Kluever · 11 years ago
  43. 824a535 Remove @Beta from: by Chris Povirk · 12 years ago
  44. 9c9cb7d Fix precondition error message to use %s instead of %d (which is not supported by the preconditions formatter). by Kurt Kluever · 12 years ago
  45. b2a1546 Some minor further optimizations to Ordering.leastOf. by Chris Povirk · 12 years ago
  46. ea1dee6 Fix Ordering.leastOf for very large k by Chris Povirk · 12 years ago
  47. 0cad3f7 Add Ordering.greatestOf(Iterator, int) overload, and fix the doc. by Chris Povirk · 12 years ago
  48. c490869 Optimize Ordering.leastOf(). by Chris Povirk · 12 years ago
  49. 3c7ed82 Update javadocs to suggest using a PQ or MMPQ if the entire iterator by Chris Povirk · 12 years ago
  50. 69c6b93 Force ArbitraryOrdering to handle nulls consistently. by Gregory Kick · 12 years ago
  51. ee0a595 Attempt to improve Ordering.allEqual() documentation. by Kurt Kluever · 12 years ago
  52. 21e01b8 Make methods of Ordering no longer arranged as if by Ordering.arbitrary(). by Kurt Kluever · 12 years ago
  53. 0f3b2f2 Optimize Ordering.sortedCopy, eliminating one gratuitous copy. by Kurt Kluever · 12 years ago
  54. 02a6ca4 Optimize Ordering.immutableSortedCopy. by Chris Povirk · 12 years ago
  55. 3a0ce24 Issue 972: Ordering.allEqual(). by Chris Povirk · 12 years ago
  56. 31046a7 Deprecate a few more StringUtil trimming methods; several random javadoc cleanups. by Kurt Kluever · 12 years ago
  57. 806967c Link pages to the wiki. by Chris Povirk · 12 years ago
  58. 2a561b1 Add Ordering.min(Iterator) and Ordering.max(Iterator). by Charles Fry · 13 years ago
  59. 4fc7c37 - add cache cleanup - scrub @since tags by Charles Fry · 13 years ago
  60. 956d3d3 manual sync by Charles Fry · 13 years ago
  61. 4fbef9f manual sync by fry@google.com · 13 years ago
  62. 2abfb18 directory reorganization in preparation for deeper maven integration by fry@google.com · 13 years ago[Renamed from src/com/google/common/collect/Ordering.java]
  63. e7c525b by guava.mirrorbot@gmail.com · 13 years ago
  64. a7aa10d by guava.mirrorbot@gmail.com · 13 years ago
  65. a6cec8b by guava.mirrorbot@gmail.com · 13 years ago
  66. 036ebba by guava.mirrorbot@gmail.com · 13 years ago
  67. efc3bcd by guava.mirrorbot@gmail.com · 13 years ago
  68. 280115a by guava.mirrorbot@gmail.com · 13 years ago
  69. 6a25cb5 Next giant code dump. Most interesting stuff: MinMaxPriorityQueue, by kevinb@google.com · 14 years ago
  70. 4583e8b by guava.mirrorbot@gmail.com · 14 years ago
  71. 214ee7f 3 days of pent-up improvements: by kevinb@google.com · 14 years ago
  72. b3804dc by guava.mirrorbot@gmail.com · 14 years ago
  73. 97963a7 Latest code dump. by kevinb@google.com · 14 years ago
  74. cac16cf ImmutableMultiset: by kevinb@google.com · 14 years ago
  75. 970ad12 Last little fixes for release 05, will write up release notes on Monday. by kevinb@google.com · 14 years ago
  76. ee071f3 Huge new source dump for source release 3, which will also become our first by kevinb@google.com · 14 years ago
  77. bbab2ce ARGHGH, guess I was in the wrong directory when submitting... amateurs... by kevinb@google.com · 15 years ago
  78. b492c55 Copy in the Google Collections 1.0-final sources, unmodified. Next step: by kevinb@google.com · 15 years ago