public void removeCoffeeById()

in eap-coffee-app/src/main/java/cafe/model/CafeRepository.java [35:40]


    public void removeCoffeeById(Long coffeeId) {
        logger.log(Level.INFO, "Removing a coffee {0}.", coffeeId);
        
        Coffee coffee = entityManager.find(Coffee.class, coffeeId);
        this.entityManager.remove(coffee);
    }