remove unused PrinterPlain

This commit is contained in:
Michael Davidsaver
2015-06-25 16:51:04 -04:00
parent 2b6172ba63
commit 9ad725a272
5 changed files with 1 additions and 335 deletions

View File

@@ -52,9 +52,6 @@ void Convert::getString(string *buf,PVField const *pvField,int /*indentLevel*/)
std::ostringstream strm;
pvField->dumpValue(strm);
strm << std::endl;
// PrinterPlain p;
// p.setStream(strm);
// p.print(*pvField);
strm.str().swap(*buf);
}