Access to a cookie is odd and tedious: ``` java String value = req.cookie("my-cookie").get().value().get(); ``` That's bc the cookie method returns an: `Optional<Cookie>` when it should be a `Mutant` ``` java String value = req.cookie("my-cookie").value(); ```
Access to a cookie is odd and tedious:
That's bc the cookie method returns an:
Optional<Cookie>when it should be aMutant