in src/main/java/com/epam/digital/data/platform/report/service/UserService.java [51:59]
public void deleteUser(Group group) {
try (Connection connection = dataSource.getConnection();
PreparedStatement statement = connection.prepareCall(DELETE_ROLE)) {
statement.setString(1, buildUserNameFor(group.getName()));
statement.execute();
} catch (SQLException e) {
throw new DatabaseUserException("Could not drop user", e);
}
}