1
0
mirror of https://github.com/square/okhttp.git synced 2026-01-15 20:56:41 +03:00

Merge pull request #2858 from franmontiel/master

Corrected javadoc of the Cookie persistent() method
This commit is contained in:
Jesse Wilson
2016-09-16 09:30:16 -04:00
committed by GitHub

View File

@@ -100,7 +100,7 @@ public final class Cookie {
return value;
}
/** Returns true if this cookie expires at the end of the current session. */
/** Returns true if this cookie does not expire at the end of the current session. */
public boolean persistent() {
return persistent;
}