Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2017-09-08 08:03:38 +0000
committerLars Vogel2017-09-08 10:40:41 +0000
commit463adc44e3cb3f433acaf17897d7b722cab83938 (patch)
tree62aa82009fbecd9ee6a86419b09b3b8c4be87efb
parentdbf66877f4ccb03b6bc5c5c25ad21445ad964789 (diff)
downloadeclipse.platform.debug-463adc44e3cb3f433acaf17897d7b722cab83938.tar.gz
eclipse.platform.debug-463adc44e3cb3f433acaf17897d7b722cab83938.tar.xz
eclipse.platform.debug-463adc44e3cb3f433acaf17897d7b722cab83938.zip
Bug 522027 - Remove trailing whitespace from
org.eclipse.debug.examples.memory Change-Id: Ie64096fb52a629a5cf90b7fc594562249e729632 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
-rw-r--r--org.eclipse.debug.examples.memory/src/org/eclipse/debug/examples/internal/memory/MemoryViewSamplePlugin.java2
-rw-r--r--org.eclipse.debug.examples.memory/src/org/eclipse/debug/examples/internal/memory/core/SampleDebugTarget.java4
-rw-r--r--org.eclipse.debug.examples.memory/src/org/eclipse/debug/examples/internal/memory/core/SampleMemoryBlock.java6
-rw-r--r--org.eclipse.debug.examples.memory/src/org/eclipse/debug/examples/internal/memory/core/SampleStackFrame.java4
-rw-r--r--org.eclipse.debug.examples.memory/src/org/eclipse/debug/examples/internal/memory/core/SampleThread.java4
-rw-r--r--org.eclipse.debug.examples.memory/src/org/eclipse/debug/examples/internal/memory/engine/SampleEngine.java12
-rw-r--r--org.eclipse.debug.examples.memory/src/org/eclipse/debug/examples/internal/memory/engine/SampleMemoryUnit.java2
7 files changed, 17 insertions, 17 deletions
diff --git a/org.eclipse.debug.examples.memory/src/org/eclipse/debug/examples/internal/memory/MemoryViewSamplePlugin.java b/org.eclipse.debug.examples.memory/src/org/eclipse/debug/examples/internal/memory/MemoryViewSamplePlugin.java
index 180f71173..8699d376c 100644
--- a/org.eclipse.debug.examples.memory/src/org/eclipse/debug/examples/internal/memory/MemoryViewSamplePlugin.java
+++ b/org.eclipse.debug.examples.memory/src/org/eclipse/debug/examples/internal/memory/MemoryViewSamplePlugin.java
@@ -116,7 +116,7 @@ public class MemoryViewSamplePlugin extends AbstractUIPlugin {
* Declares a workbench image given the path of the image file (relative to
* the workbench plug-in). This is a helper method that creates the image
* descriptor and passes it to the main <code>declareImage</code> method.
- *
+ *
* @param symbolicName the symbolic name of the image
* @param path the path of the image file relative to the base of the
* workbench plug-ins install directory <code>false</code> if
diff --git a/org.eclipse.debug.examples.memory/src/org/eclipse/debug/examples/internal/memory/core/SampleDebugTarget.java b/org.eclipse.debug.examples.memory/src/org/eclipse/debug/examples/internal/memory/core/SampleDebugTarget.java
index 4470d7e7d..8b3ff934a 100644
--- a/org.eclipse.debug.examples.memory/src/org/eclipse/debug/examples/internal/memory/core/SampleDebugTarget.java
+++ b/org.eclipse.debug.examples.memory/src/org/eclipse/debug/examples/internal/memory/core/SampleDebugTarget.java
@@ -47,7 +47,7 @@ public class SampleDebugTarget extends DebugElement implements IDebugTarget, IMe
/**
* Creates SampleDebugTarget
- *
+ *
* @param launch the launch this debug target belongs to
*/
public SampleDebugTarget(ILaunch launch) {
@@ -259,7 +259,7 @@ public class SampleDebugTarget extends DebugElement implements IDebugTarget, IMe
/**
* Remove the memory block from this debug session.
- *
+ *
* @param memBlk
*/
public void removeMemoryBlock(IMemoryBlock memBlk) {
diff --git a/org.eclipse.debug.examples.memory/src/org/eclipse/debug/examples/internal/memory/core/SampleMemoryBlock.java b/org.eclipse.debug.examples.memory/src/org/eclipse/debug/examples/internal/memory/core/SampleMemoryBlock.java
index 09c9b9ef8..6a93b4dee 100644
--- a/org.eclipse.debug.examples.memory/src/org/eclipse/debug/examples/internal/memory/core/SampleMemoryBlock.java
+++ b/org.eclipse.debug.examples.memory/src/org/eclipse/debug/examples/internal/memory/core/SampleMemoryBlock.java
@@ -31,7 +31,7 @@ import org.eclipse.jface.viewers.IColorProvider;
/**
* Memory Block Implementation
- *
+ *
*/
public class SampleMemoryBlock extends DebugElement implements IMemoryBlockExtension {
@@ -45,7 +45,7 @@ public class SampleMemoryBlock extends DebugElement implements IMemoryBlockExten
/**
* Creates memory block
- *
+ *
* @param debugTarget
* @param expression
* @param address
@@ -338,7 +338,7 @@ public class SampleMemoryBlock extends DebugElement implements IMemoryBlockExten
}
/**
- *
+ *
*/
private void fireContentChangeEvent() {
DebugEvent evt = new DebugEvent(this, DebugEvent.CHANGE);
diff --git a/org.eclipse.debug.examples.memory/src/org/eclipse/debug/examples/internal/memory/core/SampleStackFrame.java b/org.eclipse.debug.examples.memory/src/org/eclipse/debug/examples/internal/memory/core/SampleStackFrame.java
index 4b23904d2..17e890be9 100644
--- a/org.eclipse.debug.examples.memory/src/org/eclipse/debug/examples/internal/memory/core/SampleStackFrame.java
+++ b/org.eclipse.debug.examples.memory/src/org/eclipse/debug/examples/internal/memory/core/SampleStackFrame.java
@@ -21,7 +21,7 @@ import org.eclipse.debug.core.model.IVariable;
import org.eclipse.osgi.util.NLS;
/**
- *
+ *
*
*/
public class SampleStackFrame extends DebugElement implements IStackFrame {
@@ -33,7 +33,7 @@ public class SampleStackFrame extends DebugElement implements IStackFrame {
/**
* Constructs a SampleStackFrame
- *
+ *
* @param thread
* @param name
*/
diff --git a/org.eclipse.debug.examples.memory/src/org/eclipse/debug/examples/internal/memory/core/SampleThread.java b/org.eclipse.debug.examples.memory/src/org/eclipse/debug/examples/internal/memory/core/SampleThread.java
index 6e72a6f68..a94f295a9 100644
--- a/org.eclipse.debug.examples.memory/src/org/eclipse/debug/examples/internal/memory/core/SampleThread.java
+++ b/org.eclipse.debug.examples.memory/src/org/eclipse/debug/examples/internal/memory/core/SampleThread.java
@@ -21,7 +21,7 @@ import org.eclipse.debug.core.model.IThread;
/**
* Abstract Sample Thread
- *
+ *
*/
public class SampleThread extends DebugElement implements IThread {
@@ -29,7 +29,7 @@ public class SampleThread extends DebugElement implements IThread {
/**
* Constructs SampleThread
- *
+ *
* @param target
*/
public SampleThread(SampleDebugTarget target) {
diff --git a/org.eclipse.debug.examples.memory/src/org/eclipse/debug/examples/internal/memory/engine/SampleEngine.java b/org.eclipse.debug.examples.memory/src/org/eclipse/debug/examples/internal/memory/engine/SampleEngine.java
index e96c2bcd3..7416b357f 100644
--- a/org.eclipse.debug.examples.memory/src/org/eclipse/debug/examples/internal/memory/engine/SampleEngine.java
+++ b/org.eclipse.debug.examples.memory/src/org/eclipse/debug/examples/internal/memory/engine/SampleEngine.java
@@ -41,7 +41,7 @@ public class SampleEngine {
/**
* Allow debug adapters to get memory from an address
- *
+ *
* @param address
* @param length
* @return memory byte from an address
@@ -182,7 +182,7 @@ public class SampleEngine {
/**
* Simulates evaluation of an expression. Given an expression, return ad
* address
- *
+ *
* @param expression
* @param evalContext
* @return the address the expression is evaluated to
@@ -205,7 +205,7 @@ public class SampleEngine {
/**
* Simulates checking if storage retrieval is supported
- *
+ *
* @return if the engine supports storage retrieval
*/
public boolean supportsStorageRetrieval() {
@@ -214,7 +214,7 @@ public class SampleEngine {
/**
* Simulates modifying memory using BigInteger as the address
- *
+ *
* @param address
* @param bytes
* @throws RuntimeException
@@ -319,7 +319,7 @@ public class SampleEngine {
}
/**
- *
+ *
*/
private SampleStackFrame[] createStackframes(SampleThread thread) {
SampleStackFrame[] stackframes = new SampleStackFrame[2];
@@ -339,7 +339,7 @@ public class SampleEngine {
/**
* Sets the base address of this memory block
- *
+ *
* @param mb the memory block to change base address
* @param address the new base address of the memory block
* @throws CoreException
diff --git a/org.eclipse.debug.examples.memory/src/org/eclipse/debug/examples/internal/memory/engine/SampleMemoryUnit.java b/org.eclipse.debug.examples.memory/src/org/eclipse/debug/examples/internal/memory/engine/SampleMemoryUnit.java
index 95bb97c9f..72e2c664b 100644
--- a/org.eclipse.debug.examples.memory/src/org/eclipse/debug/examples/internal/memory/engine/SampleMemoryUnit.java
+++ b/org.eclipse.debug.examples.memory/src/org/eclipse/debug/examples/internal/memory/engine/SampleMemoryUnit.java
@@ -15,7 +15,7 @@ import org.eclipse.debug.core.model.MemoryByte;
/**
* For testing addressable size > 1. Group each addressable unit in a MemoryByte
* array.
- *
+ *
*/
public class SampleMemoryUnit {

Back to the top