Displaying differences for changeset
 
display as  

src/java/cfa/guiDC_Model.java

@@ -562,17 +562,13 @@
         double totalCount = (Double) returnArray[1];
 
         //Attach analysis summary to begin of dynamic paragraph
+        this.wqLen = String.valueOf(totalCount);
+        this.wqUnits = endUnits;
         DoubleMath doubleMath = new DoubleMath();
-        if(mQnHide){
-            this.wqLen = String.valueOf(totalCount);
-        }else{
+        if(!mQnHide){
             if(!MQNmessage.equalsIgnoreCase("")){//if the MQNmessage is not blank add it to the dynamic summary
-                this.wqLen = String.valueOf(totalCount);
-                this.wqUnits = units;
                 this.lowFlowErrorMessage = MQNmessage;
             }else{
-                this.wqLen = String.valueOf(totalCount);
-                this.wqUnits = units;
                 this.mQnVal =  doubleMath.round(mQn, 2);
             }
         }