Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2020-07-17 06:15:56 +0000
committerAlexander Kurtakov2020-07-17 06:15:56 +0000
commit38a8656e5adee4f0b5e32e45a9c545d18d5bb110 (patch)
tree89e4f20f6280a257ac7a5c3c83fc34e1b21ea790 /bundles
parent65adf381d99a379be38b4d9ea6f4e136cc9f2683 (diff)
downloadrt.equinox.bundles-38a8656e5adee4f0b5e32e45a9c545d18d5bb110.tar.gz
rt.equinox.bundles-38a8656e5adee4f0b5e32e45a9c545d18d5bb110.tar.xz
rt.equinox.bundles-38a8656e5adee4f0b5e32e45a9c545d18d5bb110.zip
Fix javadoc error in the I-build.
Change-Id: I4ca59be41df44d72eaa9c7696c636b338a18b2bb Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'bundles')
-rw-r--r--bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/ServiceCaller.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/ServiceCaller.java b/bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/ServiceCaller.java
index cabf4e15d..655cfe898 100644
--- a/bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/ServiceCaller.java
+++ b/bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/ServiceCaller.java
@@ -110,7 +110,7 @@ public class ServiceCaller<Service> {
* }
* });
* ...
- * @SuppressWarnings("unchecked")
+ * {@literal @}SuppressWarnings("unchecked")
* static &lt;E extends Throwable&gt; void sneakyThrow(Throwable e) throws E {
* throw (E) e;
* }

Back to the top