Skip to content
Snippets Groups Projects
Commit 560de3c4 authored by Mick Jordan's avatar Mick Jordan
Browse files

getParent of emptyEnv returns null

parent e9a4a41c
No related branches found
No related tags found
No related merge requests found
......@@ -1051,6 +1051,11 @@ public abstract class REnvironment extends RAttributeStorage implements RTypedVa
super(EMPTY_ENV_NAME, new REnvEmptyFrameAccess());
}
@Override
public REnvironment getParent() {
return null;
}
@Override
public void put(String key, Object value) throws PutException {
throw new PutException(RError.Message.ENV_ASSIGN_EMPTY);
......
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