Merge pull request #10148 from dgcd/fix_typos_in_jigsaw_module

Fixed typos in core-java-9-jigsaw module
This commit is contained in:
Loredana Crusoveanu 2020-10-16 19:06:52 +03:00 committed by GitHub
commit a1f52c6135
1 changed files with 2 additions and 2 deletions

View File

@ -19,12 +19,12 @@ public class StudentDbService implements StudentService {
}
public Student update(Student student) {
logger.log(Level.INFO, "Updating sutdent in DB...");
logger.log(Level.INFO, "Updating student in DB...");
return student;
}
public String delete(String registrationId) {
logger.log(Level.INFO, "Deleteing sutdent in DB...");
logger.log(Level.INFO, "Deleting student in DB...");
return registrationId;
}
}