Рефакторинг

This commit is contained in:
serega6531
2020-03-14 00:04:49 +03:00
parent 52918580bd
commit 731d865953
4 changed files with 9 additions and 7 deletions

View File

@@ -50,7 +50,7 @@ public class ServicesService {
return Optional.empty();
}
public Optional<CtfService> findByPort(int port) {
private Optional<CtfService> findByPort(int port) {
return Optional.ofNullable(services.get(port));
}