Commit 626dd7d807606bdd3a3ec80ddf9772dfc0e246b6

Authored by Josh Klontz
1 parent 4a6579ea

removed extra space

Showing 1 changed file with 2 additions and 2 deletions
openbr/plugins/core/pipe.cpp
@@ -56,13 +56,13 @@ class PipeTransform : public CompositeTransform @@ -56,13 +56,13 @@ class PipeTransform : public CompositeTransform
56 while (i < transforms.size()) { 56 while (i < transforms.size()) {
57 // Conditional statement covers likely case that first transform is untrainable 57 // Conditional statement covers likely case that first transform is untrainable
58 if (transforms[i]->trainable) { 58 if (transforms[i]->trainable) {
59 - qDebug() << "Training " << transforms[i]->description() << "\n..."; 59 + qDebug() << "Training" << transforms[i]->description() << "\n...";
60 transforms[i]->train(dataLines); 60 transforms[i]->train(dataLines);
61 } 61 }
62 62
63 // if the transform is time varying, we can't project it in parallel 63 // if the transform is time varying, we can't project it in parallel
64 if (transforms[i]->timeVarying()) { 64 if (transforms[i]->timeVarying()) {
65 - qDebug() << "Projecting " << transforms[i]->description() << "\n..."; 65 + qDebug() << "Projecting" << transforms[i]->description() << "\n...";
66 for (int j=0; j < dataLines.size();j++) { 66 for (int j=0; j < dataLines.size();j++) {
67 TemplateList junk; 67 TemplateList junk;
68 splitFTEs(dataLines[j], junk); 68 splitFTEs(dataLines[j], junk);