Skip to content
Snippets Groups Projects
Commit 6c0b6444 authored by Gero Leinemann's avatar Gero Leinemann
Browse files

Checkstyle.

parent 9f8b59f2
No related branches found
No related tags found
No related merge requests found
......@@ -34,7 +34,7 @@ import com.oracle.truffle.r.runtime.data.*;
*/
public class EnvProvider {
/**
* The cached {@link REnvironment}
* The cached {@link REnvironment}.
*/
private REnvironment env = null;
......
......@@ -32,18 +32,19 @@ import com.oracle.truffle.r.runtime.data.RPromise.PromiseType;
import com.oracle.truffle.r.runtime.data.RPromise.RPromiseFactory;
/**
* This {@link RNode} implementation is used as a
* This {@link RNode} implementation is used as a factory node for {@link RPromise} as it integrates
* well with the architecture.
*/
public class PromiseNode extends RNode {
/**
* The {@link RPromiseFactory} which holds all information necessary to construct a proper
* {@link RPromise} for every case that might occur
* {@link RPromise} for every case that might occur.
*/
protected final RPromiseFactory factory;
/**
* {@link EnvProvider} needed to construct a proper {@link REnvironment} for the promises being
* created here
* created here.
*/
protected final EnvProvider envProvider;
......@@ -96,7 +97,7 @@ public class PromiseNode extends RNode {
}
/**
* Creates a new {@link RPromise} every time
* Creates a new {@link RPromise} every time.
*/
@Override
public Object execute(VirtualFrame frame) {
......
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