Skip to content

Commit

Permalink
Refs #11515 Fix dead code in ResetNegatives
Browse files Browse the repository at this point in the history
  • Loading branch information
Harry Jeffery committed Apr 13, 2015
1 parent dcf0f9f commit 5acd588
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/Mantid/Framework/Algorithms/src/ResetNegatives.cpp
Expand Up @@ -67,8 +67,8 @@ void ResetNegatives::exec() {
for (int64_t i = 0; i < nHist; i++) {
if (minWS->readY(i)[0] < 0) {
hasNegative = true;
break;
}
break;
}

// get out early if there is nothing to do
Expand Down

0 comments on commit 5acd588

Please sign in to comment.