Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Arthorne2010-12-13 16:19:33 +0000
committerJohn Arthorne2010-12-13 16:19:33 +0000
commita08ccd4284a24db9a309c3d9f5c282f619aeb177 (patch)
tree34becda4a34bcec868ae6c0e9818f4ad96453f56
parenteb861ce073b2c3e04a5a3817910852bc79eab5d7 (diff)
downloadrt.equinox.bundles-a08ccd4284a24db9a309c3d9f5c282f619aeb177.tar.gz
rt.equinox.bundles-a08ccd4284a24db9a309c3d9f5c282f619aeb177.tar.xz
rt.equinox.bundles-a08ccd4284a24db9a309c3d9f5c282f619aeb177.zip
Bug 317984 - Fix for wrong usages of affect* and effect*before_bug292135
-rw-r--r--bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/PlatformObject.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/PlatformObject.java b/bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/PlatformObject.java
index dfeb2af8d..ddcd7f89f 100644
--- a/bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/PlatformObject.java
+++ b/bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/PlatformObject.java
@@ -18,7 +18,7 @@ import org.eclipse.core.internal.runtime.AdapterManager;
* to the platform's adapter manager.
* <p>
* Note: In situations where it would be awkward to subclass this
- * class, the same affect can be achieved simply by implementing
+ * class, the same effect can be achieved simply by implementing
* the {@link IAdaptable} interface and explicitly forwarding
* the <code>getAdapter</code> request to an implementation
* of the {@link IAdapterManager} service. The method would look like:

Back to the top