Skip to content

Commit e9eb281

Browse files
committed
allow clearing cached variables
1 parent ab2f0b2 commit e9eb281

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/org/rubyforge/debugcommons/model/RubyFrame.java

+4
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@ public RubyVariable[] getVariables() throws RubyDebuggerException {
5959
}
6060
return variables;
6161
}
62+
63+
public void clearCachedVariables() {
64+
variables = null;
65+
}
6266

6367
public RubyVariable inspectExpression(final String expression) throws RubyDebuggerException {
6468
return getProxy().inspectExpression(this, expression);

0 commit comments

Comments
 (0)