Skip to content
Snippets Groups Projects
Commit e2a750ee authored by Florian Angerer's avatar Florian Angerer
Browse files

Fix: ClassCastException because of RStringSequence.

parent 5a00c4f4
No related branches found
No related tags found
No related merge requests found
......@@ -69,7 +69,7 @@ final class PositionCharacterLookupNode extends RBaseNode {
if (dimNames != null) {
Object dataAt = dimNames.getDataAt(dimensionIndex);
if (dataAt != RNull.instance) {
RStringVector dimName = (RStringVector) dataAt;
RAbstractStringVector dimName = (RAbstractStringVector) dataAt;
result = searchNode.apply(dimName, position, notFoundStartIndex, null);
} else {
emptyProfile.enter();
......
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