(URL url)
| 102 | } |
| 103 | |
| 104 | public String getCookieHeader(URL url) { |
| 105 | String origin = this.urlToOrigin(url); |
| 106 | HashMap<String, String> cookie = this.cookies.get(origin); |
| 107 | if (cookie != null) { |
| 108 | return "Cookie: " + this.joinCookieKeyValue(cookie); |
| 109 | } |
| 110 | return null; |
| 111 | } |
| 112 | } |
| 113 |
nothing calls this directly
no test coverage detected