Skip to content
Snippets Groups Projects
Commit 0f499bed authored by stepan's avatar stepan
Browse files

Fix bad cast in GetDimNamesAttributeNode#getDimNames

parent bf8223a4
No related branches found
No related tags found
No related merge requests found
......@@ -838,7 +838,8 @@ public final class SpecialAttributesFunctions {
}
public final RList getDimNames(Object x) {
return (RList) execute(x);
Object result = execute(x);
return result == RNull.instance ? null : (RList) result;
}
@Specialization(insertBefore = "getAttrFromAttributable")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment