clean up with constants
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user