Skip to content

Commit

Permalink
Address feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
olim7t committed Jan 18, 2017
1 parent e9246de commit 7f8e7a1
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
* additional {@link #force} method that can be used to expedite the shutdown
* process (see below).
* <p/>
* Note that this class implements <a href="http://code.google.com/p/guava-libraries/">Guava</a>'s {@code
* Note that this class implements <a href="http://github.com/google/guava/">Guava</a>'s {@code
* ListenableFuture} and can so be used with Guava's future utilities.
*/
public abstract class CloseFuture extends AbstractFuture<Void> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
/**
* A future on a {@link ResultSet}.
* <p/>
* Note that this class implements <a href="http://code.google.com/p/guava-libraries/">Guava</a>'s {@code
* Note that this class implements <a href="http://github.com/google/guava/">Guava</a>'s {@code
* ListenableFuture} and can so be used with Guava's future utilities.
*/
public interface ResultSetFuture extends ListenableFuture<ResultSet> {
Expand Down
2 changes: 1 addition & 1 deletion manual/async/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,6 @@ There are still a few places where the driver will block internally
* trying to read fields from a [query trace] will block if the trace
hasn't been fetched already.

[ListenableFuture]: https://code.google.com/p/guava-libraries/wiki/ListenableFutureExplained
[ListenableFuture]: https://github.com/google/guava/wiki/ListenableFutureExplained
[init]: http://docs.datastax.com/en/drivers/java/3.0/com/datastax/driver/core/Cluster.html#init--
[query trace]: http://docs.datastax.com/en/drivers/java/3.0/com/datastax/driver/core/QueryTrace.html
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@
</bottom>
<links>
<link>https://docs.oracle.com/javase/8/docs/api/</link>
<link>http://docs.guava-libraries.googlecode.com/git-history/v16.0.1/javadoc/</link>
<link>https://google.github.io/guava/releases/20.0/api/docs/</link>
<link>http://netty.io/4.0/api/</link>
<!-- dependencies from driver-extras -->
<link>http://www.joda.org/joda-time/apidocs/</link>
Expand Down
2 changes: 1 addition & 1 deletion upgrade_guide/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ We've also seized the opportunity to remove code that was deprecated in 2.1.
for `null` inputs.

3. The driver now depends on Guava 16.0.1 (instead of 14.0.1).
This update has been mainly motivated by Guava's [Issue #1635](https://code.google.com/p/guava-libraries/issues/detail?id=1635),
This update has been mainly motivated by Guava's [Issue #1635](https://github.com/google/guava/issues/1635),
which affects `TypeToken`, and hence all `TypeCodec` implementations handling parameterized types.

4. `UDTMapper` (the type previously used to convert `@UDT`-annotated
Expand Down

0 comments on commit 7f8e7a1

Please sign in to comment.