BAEL-5852: remove comments
This commit is contained in:
parent
a16aa0ee61
commit
cea912e42f
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue