0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00

clean cruft

This commit is contained in:
Alberto Lerner 2010-10-14 19:54:51 -04:00
parent de7e99dcf5
commit 3348a25a3d
2 changed files with 0 additions and 8 deletions

View File

@ -56,12 +56,6 @@ namespace mongo {
return _manager->getns();
}
void Chunk::setShard( const Shard& s ){
_shard = s;
_manager->_migrationNotification(this);
_modified = true;
}
bool Chunk::contains( const BSONObj& obj ) const{
return
_manager->getShardKey().compare( getMin() , obj ) <= 0 &&

View File

@ -70,8 +70,6 @@ namespace mongo {
string getns() const;
Shard getShard() const { return _shard; }
void setShard( const Shard& shard );
bool contains( const BSONObj& obj ) const;
string toString() const;