Skip to content

Commit

Permalink
Make internal table mutable.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikekucera committed Nov 12, 2021
1 parent d3ffdd7 commit 87e6c37
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ private CyTable createTable(CyNetwork network, String namespace, String id) {
networkTableManager.removeTable(network, CyNetwork.class, namespace);
}

CyTable table = tableFactory.createTable(namespace, id, Long.class, false, false);
CyTable table = tableFactory.createTable(namespace, id, Long.class, false, true);
networkTableManager.setTable(network, CyNetwork.class, namespace, table);
tableManager.addTable(table);
return table;
Expand Down

0 comments on commit 87e6c37

Please sign in to comment.