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

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

View file

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