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

Commit e08e5ba0 authored by Eric Schmidt's avatar Eric Schmidt
Browse files

docs: Removed extraneous parens from article

Bug: 26196946
Change-Id: Ie47ee1244d1cc6c7225d1862886c43389f8e8164
parent 4c285f09
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();