Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrey Loskutov2017-07-12 12:57:50 +0000
committerAndrey Loskutov2017-07-12 12:57:50 +0000
commit1cae455f025327f0fdca8adbd09a918d98b986bc (patch)
treef8647b8cbbdb69514d15e030e75aeae49ca00f34 /bundles/org.eclipse.equinox.registry/src/org/eclipse/core/internal/registry/osgi/EquinoxRegistryStrategy.java
parent55836b9a5120fd36bc1021c36a5fdb361401ed55 (diff)
downloadrt.equinox.bundles-1cae455f025327f0fdca8adbd09a918d98b986bc.tar.gz
rt.equinox.bundles-1cae455f025327f0fdca8adbd09a918d98b986bc.tar.xz
rt.equinox.bundles-1cae455f025327f0fdca8adbd09a918d98b986bc.zip
Bug 519547 - cleanup trailing white space
Change-Id: I33c47d70d3d096ba21159df18d4f49882af578cc Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
Diffstat (limited to 'bundles/org.eclipse.equinox.registry/src/org/eclipse/core/internal/registry/osgi/EquinoxRegistryStrategy.java')
-rw-r--r--bundles/org.eclipse.equinox.registry/src/org/eclipse/core/internal/registry/osgi/EquinoxRegistryStrategy.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/internal/registry/osgi/EquinoxRegistryStrategy.java b/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/internal/registry/osgi/EquinoxRegistryStrategy.java
index adaa1c08b..4497d4292 100644
--- a/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/internal/registry/osgi/EquinoxRegistryStrategy.java
+++ b/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/internal/registry/osgi/EquinoxRegistryStrategy.java
@@ -4,10 +4,10 @@
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
- *
+ *
* Contributors:
* IBM Corporation - initial API and implementation
- * Danail Nachev - bug 203599 - events if jobs bundle has been stopped
+ * Danail Nachev - bug 203599 - events if jobs bundle has been stopped
*******************************************************************************/
package org.eclipse.core.internal.registry.osgi;
@@ -24,11 +24,11 @@ import org.osgi.framework.ServiceReference;
* The registry strategy used by the Equinox extension registry. Adds to the
* OSGi registry:
* <p><ul>
- * <li>Use debug information supplied via .options files</li>
+ * <li>Use debug information supplied via .options files</li>
* <li>Use Eclipse logging - Use Eclipse platform state for cache validation</li>
* <li>Event scheduling is done using Eclipse job scheduling mechanism</li>
- * </ul></p>
- *
+ * </ul></p>
+ *
* @since org.eclipse.equinox.registry 3.2
*/
public class EquinoxRegistryStrategy extends RegistryStrategyOSGI {
@@ -76,13 +76,13 @@ public class EquinoxRegistryStrategy extends RegistryStrategyOSGI {
}
/**
- * This method will attempt to use Eclipse Jobs mechanism to schedule registry events. If, at any time,
+ * This method will attempt to use Eclipse Jobs mechanism to schedule registry events. If, at any time,
* Eclipse Jobs mechanism is missing, this method will fallback on the "internal" event scheduling
* provided by the registry strategy.
- *
+ *
* Once the switch to the fallback mechanism occurred, no further attempt to use scheduling from the Jobs bundle
- * will be made (until registry bundle is restarted). Avoiding repeated checks in this scenario will ensure that
- * most users see no performance degradation and that order of registry events remains consistent.
+ * will be made (until registry bundle is restarted). Avoiding repeated checks in this scenario will ensure that
+ * most users see no performance degradation and that order of registry events remains consistent.
*/
@Override
public final void scheduleChangeEvent(Object[] listeners, Map deltas, Object registry) {

Back to the top