Have the trivial fetcher do no stats updating by default.

This commit is contained in:
Michael Bayne
2011-02-18 01:53:23 +00:00
parent e59b20dd56
commit 2565a292d1
2 changed files with 5 additions and 3 deletions
@@ -1039,9 +1039,6 @@ public class DepotMarshaller<T extends PersistentRecord> implements QueryMarshal
DatabaseLiaison dl) throws SQLException {
return new TableMetaData(conn.getMetaData(), tableName);
}
public void updateStats (Stats stats) {
// nothing doing
}
});
}
@@ -35,6 +35,11 @@ public abstract class Fetcher<T>
public T getCachedResult (PersistenceContext ctx) {
return null;
}
@Override // from Fetcher
public void updateStats (Stats stats) {
// nothing doing
}
}
/**