Skip to content
Snippets Groups Projects
Commit 9f229c2f authored by xsedlac9's avatar xsedlac9
Browse files

another if not null added

parent abc2b890
No related branches found
No related tags found
No related merge requests found
......@@ -33,9 +33,10 @@ public class AccountService {
}
public ScheduledPayment schedulePayment (SchedulePaymentRequest schedulePaymentRequest){
Account senderAccount = schedulePaymentRequest.getSenderAccount();
if (senderAccount == null) { return null; }
String receiverAccountId = schedulePaymentRequest.getReceiverAccountId();
Integer amount = schedulePaymentRequest.getAmount();
ScheduledPayment newScheduledPayment = new ScheduledPayment(UUID.randomUUID().toString(), senderAccount.getId(), receiverAccountId, amount);
while (!scheduledPaymentsRepository.addScheduledPayment(newScheduledPayment)) {
newScheduledPayment = new ScheduledPayment(UUID.randomUUID().toString(), senderAccount.getId(), receiverAccountId, amount);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment