(URL url)
| 123 | } |
| 124 | |
| 125 | public String getCookieHeader(URL url) { |
| 126 | HashMap<String, String> cookie = this.cookies.get(this.urlToOrigin(url)); |
| 127 | if (cookie != null) { |
| 128 | return "Cookie: " + this.joinCookieKeyValue(cookie); |
| 129 | } else { |
| 130 | return null; |
| 131 | } |
| 132 | } |
| 133 | } |
no test coverage detected