Skip to content

Commit

Permalink
Fix error in CollapseTask
Browse files Browse the repository at this point in the history
  • Loading branch information
mikekucera committed Feb 3, 2016
1 parent b77bf58 commit c68b92b
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,9 @@ private void maybeCreateAnotherAttributeForName(CyRow groupRow) {
if(labelFunction != null) {
if(String.class.equals(labelFunction.getMappingColumnType())) {
String colName = labelFunction.getMappingColumnName();
groupRow.set(colName, cluster.getLabel());
if(groupRow.getTable().getColumn(colName) != null) {
groupRow.set(colName, cluster.getLabel());
}
}
}
}
Expand Down

0 comments on commit c68b92b

Please sign in to comment.