Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.osgi/supplement/src/org/eclipse/osgi/service/runnable/ParameterizedRunnable.java')
-rw-r--r--bundles/org.eclipse.osgi/supplement/src/org/eclipse/osgi/service/runnable/ParameterizedRunnable.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/bundles/org.eclipse.osgi/supplement/src/org/eclipse/osgi/service/runnable/ParameterizedRunnable.java b/bundles/org.eclipse.osgi/supplement/src/org/eclipse/osgi/service/runnable/ParameterizedRunnable.java
index 7d99a8b91..8b0ec51fd 100644
--- a/bundles/org.eclipse.osgi/supplement/src/org/eclipse/osgi/service/runnable/ParameterizedRunnable.java
+++ b/bundles/org.eclipse.osgi/supplement/src/org/eclipse/osgi/service/runnable/ParameterizedRunnable.java
@@ -7,16 +7,16 @@
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
- *
+ *
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.osgi.service.runnable;
/**
- * Like a {@link java.lang.Runnable}, an object which captures a block of code which can
- * be passed around and executed. Unlike standard runnables, paramaterized
- * runnables allow an arbitrary {@link java.lang.Object} to be passed in when the
+ * Like a {@link java.lang.Runnable}, an object which captures a block of code which can
+ * be passed around and executed. Unlike standard runnables, paramaterized
+ * runnables allow an arbitrary {@link java.lang.Object} to be passed in when the
* block is evaluated.
* <p>
* Clients may implement this interface.
@@ -32,7 +32,7 @@ public interface ParameterizedRunnable {
/**
* Executes the block of code encapsulated by this runnable in the context of
* the given object and returns the result. The result may be <code>null</code>.
- *
+ *
* @param context the context for evaluating the runnable
* @return the result of evaluating the runnable in the given context
* @throws Exception if there is a problem running this runnable

Back to the top