CPD Results
The following document contains the results of PMD's CPD 7.0.0.
Duplications
| File | Project | Line |
|---|---|---|
| org/oxerr/ticket/inventory/support/cached/redisson/RedissonCachedListingServiceSupport.java | Ticket Inventory Support - Cached - Redisson Implementation Support | 218 |
| org/oxerr/ticket/inventory/support/cached/redisson/RedissonCachedListingServiceSupport.java | Ticket Inventory Support - Cached - Redisson Implementation Support | 243 |
entity -> this.createListingAsync(entity.getEvent(), entity.getListing(), this.getPriority(entity.getEvent(), entity.getListing(), entity.getCachedListing()))
.thenAccept((Boolean r) -> {
if (r.booleanValue()) {
var listing = entity.getListing();
cache.put(listing.getId(), this.toCached(event, listing, Status.LISTED));
}
})
).collect(Collectors.toList());
}
private List<CompletableFuture<Void>> update(final E event, final RMap<I, C> cache) { | ||
