Skip to content

Commit

Permalink
removing println
Browse files Browse the repository at this point in the history
  • Loading branch information
skublik committed Oct 11, 2021
1 parent 0a8e87a commit cecf7bd
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,6 @@ AbstractWorkSegmentationType resolveImplicitSegmentation(ImplicitWorkSegmentatio
}
}


System.out.println("XXXXXXXXXXXXXXXXXXXXXXXXXXXX REPORT_FROM: " + reportFrom + " ||||| REPORT_TO : " + reportTo + " XXXXXXXXXXXXXXXXXXXXXXXXXXXX");
System.out.println("XXXXXXXXXXXXXXXXXXXXXXXXXXXX REPORT_FROM_FIRST_RECORD: " + reportFromFirstAuditRecord + " ||||| REPORT_TO_REALIZED_TIME : " + reportToRealizedTime + " XXXXXXXXXXXXXXXXXXXXXXXXXXXX");
System.out.println("_______________________________________________________________________________");
int result =
reportFrom.toGregorianCalendar().compareTo(reportTo.toGregorianCalendar());

Expand Down Expand Up @@ -181,7 +177,6 @@ private AbstractWorkBucketContentType createBucketContent(long bucketFromMillis,
bucketTo = XmlTypeConverter.createXMLGregorianCalendar(reportToMillis);
}

System.out.println("XXXXXXXXXXXXXXXXXXXXXXXXXXXX FROM: " + bucketFrom + " ||||| TO : " + bucketTo + " XXXXXXXXXXXXXXXXXXXXXXXXXXXX");
ObjectFilter filter = PrismContext.get().queryFor(AuditEventRecordType.class)
.item(AuditEventRecordType.F_TIMESTAMP).ge(bucketFrom) // inclusive
.and().item(AuditEventRecordType.F_TIMESTAMP).le(bucketTo) // exclusive
Expand Down

0 comments on commit cecf7bd

Please sign in to comment.