BAEL-5852: remove comments

This commit is contained in:
Vladyslav Chernov 2023-11-04 15:33:30 -07:00
parent a16aa0ee61
commit cea912e42f
1 changed files with 0 additions and 2 deletions

View File

@ -2,8 +2,6 @@ package com.baeldung.holder;
public class SupplierService {
public void getSupplierByZipCode(String zip, Holder<Boolean> resultHolder) {
// Let's pretend we did some work here to get the supplier
// And let's say all zip codes starting with "9" are valid, just for this example
if (zip.startsWith("9")) {
resultHolder.value = true;
} else {