voidvector
voidvector

Reputation: 1996

How backward compatible is Guava/Google Collections?

I am working on large application with multiple projects all still use Google Collections 1.0. I want to upgrade to Guava 12. The test coverage over the projects is not great. Has anyone had similar experience in upgrading this, and is there any incompatibilities? What are the major issues?

Upvotes: 8

Views: 1185

Answers (1)

Louis Wasserman
Louis Wasserman

Reputation: 198014

Guava contributor here.

Guava 12 is almost entirely backward-compatible with Google Collections, but a very few methods have gone through the mandated 18-month deprecation period and been deleted; see https://code.google.com/p/guava-libraries/issues/detail?id=836 .

That said, nobody should still be on Google Collections, and we very strongly encourage you to migrate.

Upvotes: 8

Related Questions