Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4b1812b7 authored by Eric Schmidt's avatar Eric Schmidt Committed by Android (Google) Code Review
Browse files

Merge "docs: Removed extraneous parens from article" into mnc-docs

parents 556ca38a e08e5ba0
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -37,7 +37,7 @@ next.link=connectivity_patterns.html

<p>To ensure that your caching doesn't result in your app displaying stale data, be sure to extract the time at which the requested content was last updated, and when it expires, from within the HTTP response headers. This will allow you to determine when the associated content should be refreshed.</p>

<pre>long currentTime = System.currentTimeMillis());
<pre>long currentTime = System.currentTimeMillis();

HttpURLConnection conn = (HttpURLConnection) url.openConnection();