X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=mothurout.cpp;h=e04158248ee6c9a0144cccda268d0efa2d703ada;hb=af27acb766f6947c45e1eb65438d878c7ea48ef3;hp=b30ee3ca630c91fea01343c9d873e709e027a4fb;hpb=1916dd65829d6bb5b8bef74eddc61ea38fccf63a;p=mothur.git diff --git a/mothurout.cpp b/mothurout.cpp index b30ee3c..e041582 100644 --- a/mothurout.cpp +++ b/mothurout.cpp @@ -1221,17 +1221,6 @@ void MothurOut::splitAtChar(string& estim, vector& container, char symbo } container.push_back(individual); - /* - - while (estim.find_first_of(symbol) != -1) { - individual = estim.substr(0,estim.find_first_of(symbol)); - if ((estim.find_first_of(symbol)+1) <= estim.length()) { //checks to make sure you don't have dash at end of string - estim = estim.substr(estim.find_first_of(symbol)+1, estim.length()); - container.push_back(individual); - } - } - //get last one - container.push_back(estim); */ } catch(exception& e) { errorOut(e, "MothurOut", "splitAtChar");