clean up with constants

This commit is contained in:
heyethereum
2024-07-18 08:28:10 +08:00
parent 686c4f939e
commit b966597ca6
8 changed files with 35 additions and 27 deletions

View File

@@ -16,8 +16,8 @@ public class SMSVerificationService {
public SMSVerificationService(SMSRepository smsRepository) {
this.smsRepository = smsRepository;
}
public void insertDB(SMSEntity SMSEntity) {
smsRepository.save(SMSEntity);
public void insertDB(SMSEntity smsEntity) {
smsRepository.save(smsEntity);
}
}