Skip to content

Commit

Permalink
Fix the build.
Browse files Browse the repository at this point in the history
Volley's dependency on errorprone is is not fixed, so a new errorprone
check caused the build to fail. For now, just fix the issue. In the
future, we will migrate to a fixed version of errorprone, but this
change is non-trivial.

See google#228
  • Loading branch information
jpd236 committed Oct 11, 2018
1 parent 99d8ed8 commit c313513
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ private CacheHeader(
long softTtl,
List<Header> allResponseHeaders) {
this.key = key;
this.etag = ("".equals(etag)) ? null : etag;
this.etag = "".equals(etag) ? null : etag;
this.serverDate = serverDate;
this.lastModified = lastModified;
this.ttl = ttl;
Expand Down

0 comments on commit c313513

Please sign in to comment.