From ad4ed9e06519e9de62d6a7f22688b8bcf2728b43 Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Wed, 15 Jul 2015 11:39:46 -0400 Subject: [PATCH] Remove unnecessary printing from SurfPhase::setCoverages --- src/thermo/SurfPhase.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/thermo/SurfPhase.cpp b/src/thermo/SurfPhase.cpp index bfe81430e..ba477ad65 100644 --- a/src/thermo/SurfPhase.cpp +++ b/src/thermo/SurfPhase.cpp @@ -288,9 +288,6 @@ void SurfPhase::setCoverages(const doublereal* theta) sum += theta[k]; } if (sum <= 0.0) { - for (size_t k = 0; k < m_kk; k++) { - cout << "theta(" << k << ") = " << theta[k] << endl; - } throw CanteraError("SurfPhase::setCoverages", "Sum of Coverage fractions is zero or negative"); }