Skip to content
Snippets Groups Projects
Commit ec3d0074 authored by hugcubi's avatar hugcubi
Browse files

Quitado el println que había en booking para el debug

parent d2d0609d
No related branches found
No related tags found
2 merge requests!36Develop,!31Dev/refactor hotels booking
...@@ -18,7 +18,6 @@ public class ClientApi { ...@@ -18,7 +18,6 @@ public class ClientApi {
public boolean existsById(int id) { public boolean existsById(int id) {
String url = CLIENTS_API_URL + "/" + id; String url = CLIENTS_API_URL + "/" + id;
System.out.println(url);
ResponseEntity<Void> response = restTemplate.getForEntity(url, Void.class, id); ResponseEntity<Void> response = restTemplate.getForEntity(url, Void.class, id);
return response.getStatusCode() == HttpStatus.OK; return response.getStatusCode() == HttpStatus.OK;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment