Skip to content

Commit

Permalink
Fixed member access rights.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Apr 4, 2001
1 parent 0303c30 commit d40ec90
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions last/toby/interpreter/UnaryExpressionLogicContext.java
Expand Up @@ -57,9 +57,9 @@ protected Intrinsic simplify() throws ParseException
return(null);
} // simplify

public void freeResourcesImpl() {}
protected void freeResourcesImpl() {} // !!! hhm. Dangerous.

public void linkImpl(GlobalLogicContext glob) throws ParseException
protected void linkImpl(GlobalLogicContext glob) throws ParseException
{
if (children.length != 1)
ParseException._throw(TobyLanguage.INTERNAL_ERROR);
Expand Down

0 comments on commit d40ec90

Please sign in to comment.