Skip to content

Commit

Permalink
Issue #6654 - Fix NPEs from bad Servlet API use
Browse files Browse the repository at this point in the history
Signed-off-by: Joakim Erdfelt <joakim.erdfelt@gmail.com>
  • Loading branch information
joakime committed Aug 24, 2021
1 parent 32e6698 commit a82b45c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -100,7 +100,7 @@ public List<HttpCookie> getCookies()
}
else
{
cookies = List.of();
cookies = Collections.emptyList();
}
}

Expand Down

0 comments on commit a82b45c

Please sign in to comment.