[Solved] having errors in a java function


There is a compile error in the Grocery_Items class. You’ve commented the qty field:

// private quantitypanel qty; // A panel for quantity

Remove the comment

private quantitypanel qty; // A panel for quantity

and you won’t have any more error messages attached to it [qty].

1

solved having errors in a java function