Skip to content

Commit 987e7bb

Browse files
committed
table: delete unused function
Change-Id: I5ff291bdde47718a04ded2a0759c54483eb6a665
1 parent 56e8bbb commit 987e7bb

2 files changed

Lines changed: 2 additions & 15 deletions

File tree

daemon/table/cs.cpp

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
22
/*
3-
* Copyright (c) 2014-2022, Regents of the University of California,
3+
* Copyright (c) 2014-2025, Regents of the University of California,
44
* Arizona Board of Regents,
55
* Colorado State University,
66
* University Pierre & Marie Curie, Sorbonne University,
@@ -126,15 +126,6 @@ Cs::findImpl(const Interest& interest) const
126126
return match;
127127
}
128128

129-
void
130-
Cs::dump()
131-
{
132-
NFD_LOG_DEBUG("dump table");
133-
for (const Entry& entry : m_table) {
134-
NFD_LOG_TRACE(entry.getFullName());
135-
}
136-
}
137-
138129
void
139130
Cs::setPolicy(unique_ptr<Policy> policy)
140131
{

daemon/table/cs.hpp

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
22
/*
3-
* Copyright (c) 2014-2022, Regents of the University of California,
3+
* Copyright (c) 2014-2025, Regents of the University of California,
44
* Arizona Board of Regents,
55
* Colorado State University,
66
* University Pierre & Marie Curie, Sorbonne University,
@@ -185,10 +185,6 @@ class Cs : noncopyable
185185
void
186186
setPolicyImpl(unique_ptr<Policy> policy);
187187

188-
NFD_PUBLIC_WITH_TESTS_ELSE_PRIVATE:
189-
void
190-
dump();
191-
192188
private:
193189
Table m_table;
194190
unique_ptr<Policy> m_policy;

0 commit comments

Comments
 (0)