Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThanh Ha2014-12-20 06:04:28 +0000
committervrubezhny2015-01-17 01:40:37 +0000
commit3c95e3e3746e95e27235ceb0258306bfeae6c3a0 (patch)
tree98cc54ccc2dcfe5844bc4a326801689ad341aa0f
parent8a243ae668f87d65622b9c6083f143858d754eca (diff)
downloadwebtools.jsdt-3c95e3e3746e95e27235ceb0258306bfeae6c3a0.tar.gz
webtools.jsdt-3c95e3e3746e95e27235ceb0258306bfeae6c3a0.tar.xz
webtools.jsdt-3c95e3e3746e95e27235ceb0258306bfeae6c3a0.zip
Bug 455877 - Remove trailing whitespace in debug.rhino
Change-Id: I91bf1cb26dbe2d3121a7147df4dfb1f357dacb57 Signed-off-by: Thanh Ha <thanh.ha@alumni.carleton.ca>
-rw-r--r--bundles/org.eclipse.wst.jsdt.debug.rhino/src/org/eclipse/wst/jsdt/debug/internal/rhino/jsdi/ScriptReferenceImpl.java8
-rw-r--r--bundles/org.eclipse.wst.jsdt.debug.rhino/src/org/eclipse/wst/jsdt/debug/internal/rhino/jsdi/StackFrameImpl.java10
2 files changed, 9 insertions, 9 deletions
diff --git a/bundles/org.eclipse.wst.jsdt.debug.rhino/src/org/eclipse/wst/jsdt/debug/internal/rhino/jsdi/ScriptReferenceImpl.java b/bundles/org.eclipse.wst.jsdt.debug.rhino/src/org/eclipse/wst/jsdt/debug/internal/rhino/jsdi/ScriptReferenceImpl.java
index 286c435d6..ffb4be0f1 100644
--- a/bundles/org.eclipse.wst.jsdt.debug.rhino/src/org/eclipse/wst/jsdt/debug/internal/rhino/jsdi/ScriptReferenceImpl.java
+++ b/bundles/org.eclipse.wst.jsdt.debug.rhino/src/org/eclipse/wst/jsdt/debug/internal/rhino/jsdi/ScriptReferenceImpl.java
@@ -29,7 +29,7 @@ import org.osgi.framework.Constants;
/**
* Rhino implementation of {@link ScriptReference}
- *
+ *
* @see MirrorImpl
* @see ScriptReference
* @since 1.0
@@ -50,7 +50,7 @@ public class ScriptReferenceImpl extends MirrorImpl implements ScriptReference {
/**
* Constructor
- *
+ *
* @param vm
* @param jsonScript
*/
@@ -127,7 +127,7 @@ public class ScriptReferenceImpl extends MirrorImpl implements ScriptReference {
return scriptId;
}
-
+
/**
* Return if the script is generated or not
* @return <code>true</code> if the script was generated <code>false</code> otherwise
@@ -163,7 +163,7 @@ public class ScriptReferenceImpl extends MirrorImpl implements ScriptReference {
}
return this.sourceuri;
}
-
+
/* (non-Javadoc)
* @see java.lang.Object#toString()
*/
diff --git a/bundles/org.eclipse.wst.jsdt.debug.rhino/src/org/eclipse/wst/jsdt/debug/internal/rhino/jsdi/StackFrameImpl.java b/bundles/org.eclipse.wst.jsdt.debug.rhino/src/org/eclipse/wst/jsdt/debug/internal/rhino/jsdi/StackFrameImpl.java
index 3144064c2..14d438327 100644
--- a/bundles/org.eclipse.wst.jsdt.debug.rhino/src/org/eclipse/wst/jsdt/debug/internal/rhino/jsdi/StackFrameImpl.java
+++ b/bundles/org.eclipse.wst.jsdt.debug.rhino/src/org/eclipse/wst/jsdt/debug/internal/rhino/jsdi/StackFrameImpl.java
@@ -30,7 +30,7 @@ import org.eclipse.wst.jsdt.debug.transport.exception.TimeoutException;
/**
* Rhino implementation of {@link StackFrame}
- *
+ *
* @see MirrorImpl
* @see StackFrame
* @since 1.0
@@ -48,7 +48,7 @@ public class StackFrameImpl extends MirrorImpl implements StackFrame {
/**
* Constructor
- *
+ *
* @param vm
* @param jsonFrame
*/
@@ -95,7 +95,7 @@ public class StackFrameImpl extends MirrorImpl implements StackFrame {
/**
* Utility method to look up the {@link Value} with the given reference id <br>
* or <code>null</code> if there is no {@link Value} with the given id
- *
+ *
* @param ref
* @return the {@link Value} or <code>null</code>
*/
@@ -122,7 +122,7 @@ public class StackFrameImpl extends MirrorImpl implements StackFrame {
/**
* Creates a new type value for the given type description in the map
- *
+ *
* @param body
* @param iseval
* @return the new type
@@ -225,7 +225,7 @@ public class StackFrameImpl extends MirrorImpl implements StackFrame {
/**
* Returns if this stack frame is visible
- *
+ *
* @param variable
* @return true if this frame is visible, false otherwise
*/

Back to the top