Skip to content
Snippets Groups Projects
Commit ccb5c1d7 authored by Lukas Stadler's avatar Lukas Stadler
Browse files

small cleanup in BrowserFunctions.HelperState

parent a613b91d
Branches
No related tags found
No related merge requests found
......@@ -39,10 +39,10 @@ import com.oracle.truffle.r.runtime.data.*;
public class BrowserFunctions {
private static final class HelperState {
String text;
Object condition;
private final String text;
private final Object condition;
HelperState(String text, Object condition) {
private HelperState(String text, Object condition) {
this.text = text;
this.condition = condition;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment