Skip to content

Commit ff75456

Browse files
committed
cleaning public modifier in EvaluateContext
1 parent 2311a0f commit ff75456

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

prism/src/parser/EvaluateContext.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ public interface EvaluateContext
3434
/**
3535
* Return the value for a constant (by name); null if unknown.
3636
*/
37-
public Object getConstantValue(String name);
37+
Object getConstantValue(String name);
3838

3939
/**
4040
* Return the value for a variable (by name or index); null if unknown.
4141
*/
42-
public Object getVarValue(String name, int index);
42+
Object getVarValue(String name, int index);
4343

4444
/**
4545
* Return the value for a label (by name); null if unknown.

0 commit comments

Comments
 (0)