diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-08-20 20:54:27 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-08-20 20:54:27 +0200 |
commit | 380222411038cb4f74cbb109984c4b855b4799f6 (patch) | |
tree | 9f5aa1fbeb733724781ed219d922a9fe9746b6fa /src/netbase.cpp | |
parent | 9b6d4c5cdc1ad7b12b8b7ba05125dad9ba2d396e (diff) |
Remove all other print() methods
All unused.
Diffstat (limited to 'src/netbase.cpp')
-rw-r--r-- | src/netbase.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/netbase.cpp b/src/netbase.cpp index e1637cd404..e9207da330 100644 --- a/src/netbase.cpp +++ b/src/netbase.cpp @@ -874,11 +874,6 @@ uint64_t CNetAddr::GetHash() const return nRet; } -void CNetAddr::print() const -{ - LogPrintf("CNetAddr(%s)\n", ToString()); -} - // private extensions to enum Network, only returned by GetExtNetwork, // and only used in GetReachabilityFrom static const int NET_UNKNOWN = NET_MAX + 0; @@ -1107,11 +1102,6 @@ std::string CService::ToString() const return ToStringIPPort(); } -void CService::print() const -{ - LogPrintf("CService(%s)\n", ToString()); -} - void CService::SetPort(unsigned short portIn) { port = portIn; |