aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/async
diff options
context:
space:
mode:
authorGravatar Daryle Walker <dwalker07@yahoo.com>2015-12-31 17:44:04 -0500
committerGravatar Daryle Walker <dwalker07@yahoo.com>2015-12-31 17:44:04 -0500
commitdeb20acba866a43ec4dae9a8c8597db826655fd9 (patch)
tree83210ebb66760bc5e0d27e0993de3e9130fc7220 /src/async
parentb0635b9e8f3ba3b48d1335b95ff32bd1731d74b5 (diff)
Remove a method. Suggested by @dinhvietoa
Diffstat (limited to 'src/async')
-rw-r--r--src/async/nntp/MCNNTPAsyncSession.cpp5
-rw-r--r--src/async/nntp/MCNNTPAsyncSession.h1
2 files changed, 0 insertions, 6 deletions
diff --git a/src/async/nntp/MCNNTPAsyncSession.cpp b/src/async/nntp/MCNNTPAsyncSession.cpp
index a8c05d58..ad74f7a9 100644
--- a/src/async/nntp/MCNNTPAsyncSession.cpp
+++ b/src/async/nntp/MCNNTPAsyncSession.cpp
@@ -200,11 +200,6 @@ NNTPFetchArticleOperation * NNTPAsyncSession::fetchArticleByMessageIDOperation(S
return op;
}
-NNTPFetchArticleOperation * NNTPAsyncSession::fetchArticleByMessageIDOperation(String *groupName, String *messageID)
-{
- return this->fetchArticleByMessageIDOperation(messageID);
-}
-
NNTPFetchOverviewOperation * NNTPAsyncSession::fetchOverviewOperationWithIndexes(String * groupName, IndexSet * indexes)
{
NNTPFetchOverviewOperation * op = new NNTPFetchOverviewOperation();
diff --git a/src/async/nntp/MCNNTPAsyncSession.h b/src/async/nntp/MCNNTPAsyncSession.h
index 06133367..b3e40ea8 100644
--- a/src/async/nntp/MCNNTPAsyncSession.h
+++ b/src/async/nntp/MCNNTPAsyncSession.h
@@ -64,7 +64,6 @@ namespace mailcore {
virtual NNTPFetchArticleOperation * fetchArticleOperation(String *groupName, unsigned int index);
virtual NNTPFetchArticleOperation * fetchArticleByMessageIDOperation(String * messageID);
- virtual NNTPFetchArticleOperation * fetchArticleByMessageIDOperation(String * groupname, String * messageID);
virtual NNTPFetchOverviewOperation * fetchOverviewOperationWithIndexes(String * groupName, IndexSet * indexes);