Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5784


Ignore:
Timestamp:
Sep 24, 2009, 9:27:03 PM (15 years ago)
Author:
landauf
Message:

more cleanup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/core5/src/libraries/core/Identifier.cc

    r5783 r5784  
    113113            // There is already an entry: return it and delete the proposal
    114114            delete proposal;
    115             return (*it).second;
     115            return it->second;
    116116        }
    117117        else
     
    428428        std::map<std::string, ConfigValueContainer*>::const_iterator it = configValues_.find(varname);
    429429        if (it != configValues_.end())
    430             return ((*it).second);
     430            return it->second;
    431431        else
    432432            return 0;
     
    442442        std::map<std::string, ConfigValueContainer*>::const_iterator it = configValues_LC_.find(varname);
    443443        if (it != configValues_LC_.end())
    444             return ((*it).second);
     444            return it->second;
    445445        else
    446446            return 0;
     
    481481        std::map<std::string, ConsoleCommand*>::const_iterator it = this->consoleCommands_.find(name);
    482482        if (it != this->consoleCommands_.end())
    483             return (*it).second;
     483            return it->second;
    484484        else
    485485            return 0;
     
    495495        std::map<std::string, ConsoleCommand*>::const_iterator it = this->consoleCommands_LC_.find(name);
    496496        if (it != this->consoleCommands_LC_.end())
    497             return (*it).second;
     497            return it->second;
    498498        else
    499499            return 0;
     
    509509        std::map<std::string, XMLPortParamContainer*>::const_iterator it = this->xmlportParamContainers_.find(paramname);
    510510        if (it != this->xmlportParamContainers_.end())
    511             return ((*it).second);
     511            return it->second;
    512512        else
    513513            return 0;
     
    540540        std::map<std::string, XMLPortObjectContainer*>::const_iterator it = this->xmlportObjectContainers_.find(sectionname);
    541541        if (it != this->xmlportObjectContainers_.end())
    542             return ((*it).second);
     542            return it->second;
    543543        else
    544544            return 0;
     
    571571        std::map<std::string, XMLPortObjectContainer*>::const_iterator it = this->xmlportEventContainers_.find(eventname);
    572572        if (it != this->xmlportEventContainers_.end())
    573             return ((*it).second);
     573            return it->second;
    574574        else
    575575            return 0;
     
    602602    {
    603603        for (std::set<const Identifier*>::const_iterator it = list.begin(); it != list.end(); ++it)
    604             out << (*it)->getName() << " ";
     604        {
     605            if (it != list.begin())
     606                out << " ";
     607            out << (*it)->getName();
     608        }
    605609
    606610        return out;
Note: See TracChangeset for help on using the changeset viewer.