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

Former-commit-id: 27234eb99d [formerly d6a674189b] [formerly 9b793f195b] [formerly 27234eb99d [formerly d6a674189b] [formerly 9b793f195b] [formerly 8195fd7930 [formerly 9b793f195b [formerly 444a78f0a007038b845946aec9ecfb88b4ae7b63]]]]
Former-commit-id: 8195fd7930
Former-commit-id: 0de3e4c755 [formerly bc93eff808] [formerly 9d6286e0eb9ffe3594df9d913c23ad32340ced84 [formerly 154b428162]]
Former-commit-id: 4cde1a67de54464cb80c123c872abcab0ed733dd [formerly 9843217d41]
Former-commit-id: 075a8582e8
This commit is contained in:
Lee Venable 2013-01-29 14:54:14 -06:00 committed by Gerrit Code Review
commit 0ed518a11c

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) {