|
From: <mba...@us...> - 2007-05-01 13:12:10
|
Revision: 2402
http://svn.sourceforge.net/rubyeclipse/?rev=2402&view=rev
Author: mbarchfe
Date: 2007-05-01 06:12:09 -0700 (Tue, 01 May 2007)
Log Message:
-----------
set the timeout for inspection on the ruby side (requires ruby-debug-ide 0.1.4)
Modified Paths:
--------------
trunk/org.rubypeople.rdt.debug.core/src/org/rubypeople/rdt/internal/debug/core/parsing/VariableReader.java
Modified: trunk/org.rubypeople.rdt.debug.core/src/org/rubypeople/rdt/internal/debug/core/parsing/VariableReader.java
===================================================================
--- trunk/org.rubypeople.rdt.debug.core/src/org/rubypeople/rdt/internal/debug/core/parsing/VariableReader.java 2007-05-01 13:11:08 UTC (rev 2401)
+++ trunk/org.rubypeople.rdt.debug.core/src/org/rubypeople/rdt/internal/debug/core/parsing/VariableReader.java 2007-05-01 13:12:09 UTC (rev 2402)
@@ -39,8 +39,7 @@
this.parent = parent;
this.variables = new ArrayList<IVariable>();
try {
- // TODO: timeout should be configurable
- this.read(10000);
+ this.read();
} catch (Exception ex) {
RdtDebugCorePlugin.log(ex);
return new RubyVariable[0];
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|