src/java/org/apache/fulcrum/yaafi/interceptor/jamon/JamonInterceptorServiceImpl.java [256:265]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	protected void writeReport() {
		if (this.reportTimeout > 0) {
			long currTimestamp = System.currentTimeMillis();

			if (currTimestamp > this.nextReportTimestamp) {
				this.nextReportTimestamp = currTimestamp + this.reportTimeout;
				this.writeReport(this.reportFile);
			}
		}
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/java/org/apache/fulcrum/yaafi/interceptor/javasimon/JavaSimonInterceptorServiceImpl.java [260:269]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	protected void writeReport() {
		if (this.reportTimeout > 0) {
			long currTimestamp = System.currentTimeMillis();

			if (currTimestamp > this.nextReportTimestamp) {
				this.nextReportTimestamp = currTimestamp + this.reportTimeout;
				this.writeReport(this.reportFile);
			}
		}
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



