Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormrennie2010-07-22 20:13:16 +0000
committermrennie2010-07-22 20:13:16 +0000
commit4552580c6ff9f7fa4360ef288605e0db122db68f (patch)
treeddea9f4320aa3c7fc281ccb931e79a1d0cdf921a /development/org.eclipse.wst.jsdt.debug.chrome/src/org/eclipse/wst/jsdt/debug/internal/chrome/jsdi
parente02c42dca6f7d93575a6be20f5fab90f9cd9bdee (diff)
downloadwebtools.jsdt.debug-4552580c6ff9f7fa4360ef288605e0db122db68f.tar.gz
webtools.jsdt.debug-4552580c6ff9f7fa4360ef288605e0db122db68f.tar.xz
webtools.jsdt.debug-4552580c6ff9f7fa4360ef288605e0db122db68f.zip
updated request*impls
Diffstat (limited to 'development/org.eclipse.wst.jsdt.debug.chrome/src/org/eclipse/wst/jsdt/debug/internal/chrome/jsdi')
-rw-r--r--development/org.eclipse.wst.jsdt.debug.chrome/src/org/eclipse/wst/jsdt/debug/internal/chrome/jsdi/VMImpl.java6
1 files changed, 0 insertions, 6 deletions
diff --git a/development/org.eclipse.wst.jsdt.debug.chrome/src/org/eclipse/wst/jsdt/debug/internal/chrome/jsdi/VMImpl.java b/development/org.eclipse.wst.jsdt.debug.chrome/src/org/eclipse/wst/jsdt/debug/internal/chrome/jsdi/VMImpl.java
index c6f854c..a714e0f 100644
--- a/development/org.eclipse.wst.jsdt.debug.chrome/src/org/eclipse/wst/jsdt/debug/internal/chrome/jsdi/VMImpl.java
+++ b/development/org.eclipse.wst.jsdt.debug.chrome/src/org/eclipse/wst/jsdt/debug/internal/chrome/jsdi/VMImpl.java
@@ -145,9 +145,6 @@ public class VMImpl extends MirrorImpl implements VirtualMachine {
* @see org.eclipse.wst.jsdt.debug.core.jsdi.VirtualMachine#allThreads()
*/
public List allThreads() {
- if(threads.isEmpty()) {
- return Collections.EMPTY_LIST;
- }
return new ArrayList(threads.values());
}
@@ -155,9 +152,6 @@ public class VMImpl extends MirrorImpl implements VirtualMachine {
* @see org.eclipse.wst.jsdt.debug.core.jsdi.VirtualMachine#allScripts()
*/
public List allScripts() {
- if(scripts.isEmpty()) {
- return Collections.EMPTY_LIST;
- }
return new ArrayList(scripts.values());
}

Back to the top