Merge "Issue #1535 Fix GFE saving last block of grids twice" into 13.2.1_delivery

Former-commit-id: 9b793f195b [formerly 9b793f195b [formerly 444a78f0a007038b845946aec9ecfb88b4ae7b63]]
Former-commit-id: 8195fd7930
Former-commit-id: 154b428162
This commit is contained in:
Lee Venable 2013-01-29 14:54:14 -06:00 committed by Gerrit Code Review
commit 9843217d41

View file

@ -623,6 +623,7 @@ public class DbParm extends Parm {
success &= allSaved; success &= allSaved;
} }
// if any pending saves // if any pending saves
if (sgr.size() > 0) { if (sgr.size() > 0) {
if (doSave(sgr)) { if (doSave(sgr)) {
@ -632,13 +633,7 @@ public class DbParm extends Parm {
} else { } else {
success = false; success = false;
} }
} pendingUnlocks.clear();
// if any pending saves
if (sgr.size() > 0) {
if (!doSave(sgr)) {
success = false;
}
} }
if (success) { if (success) {