private void processCoincidence(CoincidenceTO coincidenceTO) {
   BigDecimal matchPercent =
       MathUtils.divide(coincidenceTO.getTotalSeconds(), coincidenceTO.getCommercialDuration());
   if (matchPercent.floatValue() >= MIN_MATCH_PERCENT) {
     LOGGER.info(
         "Found jingle: {} with total match percent {}",
         coincidenceTO.getJingleName(),
         matchPercent);
     this.coincidenceBean.saveCoincidence(matchPercent, this.radioCode, coincidenceTO);
   } else {
     LOGGER.info(
         "Coincidence for jingle: {} not has enough match percent seconds {}",
         coincidenceTO.getJingleName(),
         matchPercent);
   }
 }