correct typo in the javadoc
git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19848 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
parent
c251637ed6
commit
c6d51a1993
|
@ -85,21 +85,21 @@ public class QueryStatisticsImpl extends CategorizedStatistics implements QueryS
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* average time in ms taken by the excution of this query onto the DB
|
* average time in ms taken by the execution of this query onto the DB
|
||||||
*/
|
*/
|
||||||
public long getExecutionAvgTime() {
|
public long getExecutionAvgTime() {
|
||||||
return executionAvgTime;
|
return executionAvgTime;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* max time in ms taken by the excution of this query onto the DB
|
* max time in ms taken by the execution of this query onto the DB
|
||||||
*/
|
*/
|
||||||
public long getExecutionMaxTime() {
|
public long getExecutionMaxTime() {
|
||||||
return executionMaxTime;
|
return executionMaxTime;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* min time in ms taken by the excution of this query onto the DB
|
* min time in ms taken by the execution of this query onto the DB
|
||||||
*/
|
*/
|
||||||
public long getExecutionMinTime() {
|
public long getExecutionMinTime() {
|
||||||
return executionMinTime;
|
return executionMinTime;
|
||||||
|
|
Loading…
Reference in New Issue