These don't *really* override anything so we can't mark them as such as JDK 1.5

will do le freak out.
This commit is contained in:
Michael Bayne
2008-11-21 06:30:32 +00:00
parent f6339978bf
commit ae414006bc
4 changed files with 10 additions and 10 deletions
@@ -1034,8 +1034,8 @@ public class DepotMarshaller<T extends PersistentRecord>
throws DatabaseException throws DatabaseException
{ {
return ctx.invoke(new Query.Trivial<TableMetaData>() { return ctx.invoke(new Query.Trivial<TableMetaData>() {
@Override public TableMetaData invoke (PersistenceContext ctx, Connection conn, public TableMetaData invoke (PersistenceContext ctx, Connection conn,
DatabaseLiaison dl) throws SQLException { DatabaseLiaison dl) throws SQLException {
return new TableMetaData(conn.getMetaData(), tableName); return new TableMetaData(conn.getMetaData(), tableName);
} }
public void updateStats (Stats stats) { public void updateStats (Stats stats) {
@@ -66,7 +66,7 @@ public class FindAllKeysQuery<T extends PersistentRecord> extends Query<List<Key
return null; // TODO return null; // TODO
} }
@Override // from Query // from Query
public List<Key<T>> invoke (PersistenceContext ctx, Connection conn, DatabaseLiaison liaison) public List<Key<T>> invoke (PersistenceContext ctx, Connection conn, DatabaseLiaison liaison)
throws SQLException throws SQLException
{ {
@@ -87,7 +87,7 @@ public class FindAllKeysQuery<T extends PersistentRecord> extends Query<List<Key
} }
} }
@Override // from Query // from Query
public void updateStats (Stats stats) public void updateStats (Stats stats)
{ {
stats.noteQuery(0, 1, 0, 0); // one uncached query stats.noteQuery(0, 1, 0, 0); // one uncached query
@@ -85,7 +85,7 @@ public abstract class FindAllQuery<T extends PersistentRecord> extends Query<Lis
return null; // TODO return null; // TODO
} }
@Override // from Query // from Query
public List<T> invoke (PersistenceContext ctx, Connection conn, DatabaseLiaison liaison) public List<T> invoke (PersistenceContext ctx, Connection conn, DatabaseLiaison liaison)
throws SQLException throws SQLException
{ {
@@ -153,7 +153,7 @@ public abstract class FindAllQuery<T extends PersistentRecord> extends Query<Lis
return _fetchKeys.isEmpty() ? resolve(_keys, _entities) : null; return _fetchKeys.isEmpty() ? resolve(_keys, _entities) : null;
} }
@Override // from Query // from Query
public List<T> invoke (PersistenceContext ctx, Connection conn, DatabaseLiaison liaison) public List<T> invoke (PersistenceContext ctx, Connection conn, DatabaseLiaison liaison)
throws SQLException throws SQLException
{ {
@@ -188,7 +188,7 @@ public abstract class FindAllQuery<T extends PersistentRecord> extends Query<Lis
// not play nicely when records were evicted from the cache by primary key // not play nicely when records were evicted from the cache by primary key
} }
@Override // from Query // from Query
public List<T> invoke (PersistenceContext ctx, Connection conn, DatabaseLiaison liaison) public List<T> invoke (PersistenceContext ctx, Connection conn, DatabaseLiaison liaison)
throws SQLException throws SQLException
{ {
@@ -213,7 +213,7 @@ public abstract class FindAllQuery<T extends PersistentRecord> extends Query<Lis
} }
} }
@Override // from Query // from Query
public void updateStats (Stats stats) public void updateStats (Stats stats)
{ {
stats.noteQuery(_cachedQueries, _uncachedQueries, _cachedRecords, _uncachedRecords); stats.noteQuery(_cachedQueries, _uncachedQueries, _cachedRecords, _uncachedRecords);
@@ -69,7 +69,7 @@ public class FindOneQuery<T extends PersistentRecord> extends Query<T>
return cvalue; return cvalue;
} }
@Override // from Query // from Query
public T invoke (PersistenceContext ctx, Connection conn, DatabaseLiaison liaison) public T invoke (PersistenceContext ctx, Connection conn, DatabaseLiaison liaison)
throws SQLException throws SQLException
{ {
@@ -109,7 +109,7 @@ public class FindOneQuery<T extends PersistentRecord> extends Query<T>
} }
} }
@Override // from Operation // from Operation
public void updateStats (Stats stats) public void updateStats (Stats stats)
{ {
stats.noteQuery(0, 0, _cachedRecords, 1-_cachedRecords); stats.noteQuery(0, 0, _cachedRecords, 1-_cachedRecords);