Skip to content

Commit e1f6678

Browse files
committed
Check for null on PV Table item get method
1 parent 4d615e4 commit e1f6678

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

app/pvtable/src/main/java/org/phoebus/applications/pvtable/ui/TableItemProxy.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,10 @@ public TableItemProxy()
8282

8383
public PVTableItem getItem()
8484
{
85+
if(item == null)
86+
{
87+
return null;
88+
}
8589
return item.get();
8690
}
8791

0 commit comments

Comments
 (0)