summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEliot Horowitz <eliot@10gen.com>2010-11-16 15:01:31 -0500
committerEliot Horowitz <eliot@10gen.com>2010-11-16 15:01:31 -0500
commit27fa38022550de89b2b2d61a308fa6270fb32e76 (patch)
tree2d649e3232684f2210a2332c50372666339d656a
parent7a16417a8d925f38a56c8e4ded8597508552ffd5 (diff)
downloadmongo-27fa38022550de89b2b2d61a308fa6270fb32e76.tar.gz
cruft
-rw-r--r--db/instance.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/db/instance.cpp b/db/instance.cpp
index 07b8bc7844d..1359a306672 100644
--- a/db/instance.cpp
+++ b/db/instance.cpp
@@ -592,21 +592,6 @@ namespace mongo {
}
}
- class JniMessagingPort : public AbstractMessagingPort {
- public:
- JniMessagingPort(Message& _container) : container(_container) { }
- void reply(Message& received, Message& response, MSGID) {
- container = response;
- }
- void reply(Message& received, Message& response) {
- container = response;
- }
- unsigned remotePort(){
- return 1;
- }
- Message & container;
- };
-
void getDatabaseNames( vector< string > &names , const string& usePath ) {
boost::filesystem::path path( usePath );
for ( boost::filesystem::directory_iterator i( path );