src/main/java/com/company/example/web/bookshop/VertxBookShopREST.java [69:76]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    String userId = routingContext.request().getParam("userId");
    HttpServerResponse response = routingContext.response();

    if (userId == null) {
      response.setStatusCode(400).end();
    } else {
      JsonObject cart = carts.get(userId);
      if (cart == null) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/company/example/web/bookshop/VertxBookShopREST.java [131:137]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    String userId = routingContext.request().getParam("userId");
    HttpServerResponse response = routingContext.response();
    if (userId == null) {
      response.setStatusCode(400).end();
    } else {
      JsonObject cart = carts.get(userId);
      if (cart == null) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



