Skip to content

Commit

Permalink
#593 docs updates
Browse files Browse the repository at this point in the history
  • Loading branch information
ldhasson committed Jun 7, 2021
1 parent b5fabbb commit 044d334
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tilda/parsing/parts/Column.java
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ public Column(String Name, String SameAs, String Description)
*/
public String getFullName()
{
return _ParentObject.getFullName() + "." + _Name;
return (_ParentObject == null ? null : _ParentObject.getFullName()) + "." + _Name;
}

/**
Expand Down

0 comments on commit 044d334

Please sign in to comment.