[cooja] plugins/LogListener: Prevent from throwing

ArrayIndexOutOfBoundsException in case of empty logTable
This commit is contained in:
Enrico Joerns 2014-04-15 00:18:34 +02:00
parent 19cd33664d
commit b53cee163d

View file

@ -383,6 +383,9 @@ public class LogListener extends VisPlugin implements HasQuickHelp {
}
int rowIndex = logTable.rowAtPoint(e.getPoint());
if (rowIndex == -1) {
return;
}
LogData d = logs.get(logTable.getRowSorter().convertRowIndexToModel(rowIndex));
if (d == null) {
return;