(String id)
| 438 | } |
| 439 | |
| 440 | @Override |
| 441 | public void remove(String id) throws IOException { |
| 442 | withRetry(conn -> { |
| 443 | remove(id, conn); |
| 444 | return null; |
| 445 | }); |
| 446 | |
| 447 | if (manager.getContext().getLogger().isTraceEnabled()) { |
| 448 | manager.getContext().getLogger().trace(sm.getString("dataSourceStore.removing", id, sessionTable)); |
| 449 | } |
| 450 | } |
| 451 | |
| 452 | /** |
| 453 | * Remove the Session with the specified session identifier from this Store, if present. If no such Session is |
no test coverage detected