mirror of
https://gitlab.com/oeffi/public-transport-enabler.git
synced 2025-07-09 19:38:48 +00:00
fix NPE
git-svn-id: https://public-transport-enabler.googlecode.com/svn/trunk@186 0924bc21-9374-b0fa-ee44-9ff1593b38f0
This commit is contained in:
parent
ac5330a413
commit
d7832988e1
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ public final class ParserUtils
|
|||
{
|
||||
for (final Map.Entry<String, List<String>> entry : connection.getHeaderFields().entrySet())
|
||||
{
|
||||
if (entry.getKey().equalsIgnoreCase("set-cookie"))
|
||||
if ("set-cookie".equalsIgnoreCase(entry.getKey()))
|
||||
{
|
||||
for (final String value : entry.getValue())
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue