From b1e897ce2fb68d07e259c64a5f17aeccf30d40ee Mon Sep 17 00:00:00 2001 From: Zlatin Balevsky Date: Wed, 8 Jun 2022 19:03:49 +0100 Subject: [PATCH] ignore the AIOOBE in updating shared file stable rows for now --- gui/griffon-app/views/com/muwire/gui/MainFrameView.groovy | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/gui/griffon-app/views/com/muwire/gui/MainFrameView.groovy b/gui/griffon-app/views/com/muwire/gui/MainFrameView.groovy index 7201e27b..6f0f4909 100644 --- a/gui/griffon-app/views/com/muwire/gui/MainFrameView.groovy +++ b/gui/griffon-app/views/com/muwire/gui/MainFrameView.groovy @@ -2146,9 +2146,7 @@ class MainFrameView { try { table.model.fireTableRowsUpdated(row, row) } catch (IndexOutOfBoundsException bad) { - int modelSize = table.model.size() - int sharedSize = model.shared.size() - throw new Exception("Index out of bounds: row=$row sharedSize=$sharedSize modelSize=$modelSize", bad) + // TODO: figure out why this happens } }