Repositories (1)

WebShop
1 snippets stored for this repo
Java IconJava
System.out.println("TOO FEW ARGS");
            return;
        }
        OperationResult<Document> rawrXD = service.adjustItemStock(Integer.parseInt(theArgs[1]), Integer.parseInt(theArgs[2]));
        if (rawrXD.isSuccess()) {
            System.out.println("Adjusted item: " + theArgs[1] + " by adding: " + theArgs[2] + " to the total amount!");
        } else {