Remove unused, undefined method TDB2::dump (#3754)

This commit is contained in:
Dustin J. Mitchell 2025-01-13 08:33:06 -05:00 committed by GitHub
parent ffcd1c0d79
commit 1c9dddcae7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 0 additions and 7 deletions

View file

@ -450,11 +450,6 @@ int TDB2::num_local_changes() { return (int)replica()->num_local_operations(); }
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
int TDB2::num_reverts_possible() { return (int)replica()->num_undo_points(); } int TDB2::num_reverts_possible() { return (int)replica()->num_undo_points(); }
////////////////////////////////////////////////////////////////////////////////
void TDB2::dump() {
// TODO
}
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// For any task that has depenencies, follow the chain of dependencies until the // For any task that has depenencies, follow the chain of dependencies until the
// end. Along the way, update the Task::is_blocked and Task::is_blocking data // end. Along the way, update the Task::is_blocked and Task::is_blocking data

View file

@ -72,8 +72,6 @@ class TDB2 {
int num_local_changes(); int num_local_changes();
int num_reverts_possible(); int num_reverts_possible();
void dump();
rust::Box<tc::Replica> &replica(); rust::Box<tc::Replica> &replica();
private: private: