Skip to content

Commit

Permalink
Merge b6e5956 into b83742d
Browse files Browse the repository at this point in the history
  • Loading branch information
Xudong Ma committed Aug 20, 2015
2 parents b83742d + b6e5956 commit 693152f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions core/src/main/java/io/grpc/CallOptions.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
package io.grpc;

import com.google.common.base.Objects;
import com.google.common.base.Objects.ToStringHelper;

import io.grpc.MessageEncoding.Compressor;

Expand Down Expand Up @@ -125,7 +124,7 @@ private CallOptions(CallOptions other) {
@SuppressWarnings("deprecation") // guava 14.0
@Override
public String toString() {
ToStringHelper toStringHelper = Objects.toStringHelper(this);
Objects.ToStringHelper toStringHelper = Objects.toStringHelper(this);
toStringHelper.add("deadlineNanoTime", deadlineNanoTime);
if (deadlineNanoTime != null) {
long remainingNanos = deadlineNanoTime - System.nanoTime();
Expand Down

0 comments on commit 693152f

Please sign in to comment.