Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2008-10-06 22:14:00 +0000
committerThomas Watson2008-10-06 22:14:00 +0000
commit71006f19161d78f29ba5350b62736db0cc633198 (patch)
treea4f9788fec659690800fa6cedc0e3b90e546cf51 /bundles/org.eclipse.osgi/security/src/org
parentf74b3cb824c5b542486aa1e9d13e2846c931abf5 (diff)
downloadrt.equinox.framework-71006f19161d78f29ba5350b62736db0cc633198.tar.gz
rt.equinox.framework-71006f19161d78f29ba5350b62736db0cc633198.tar.xz
rt.equinox.framework-71006f19161d78f29ba5350b62736db0cc633198.zip
Bug 249343 Compiler warnings for overriding synchronized method.v20081006-1815
Diffstat (limited to 'bundles/org.eclipse.osgi/security/src/org')
-rw-r--r--bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/signedcontent/InvalidContentException.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/signedcontent/InvalidContentException.java b/bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/signedcontent/InvalidContentException.java
index 1b38e8087..846c307df 100644
--- a/bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/signedcontent/InvalidContentException.java
+++ b/bundles/org.eclipse.osgi/security/src/org/eclipse/osgi/signedcontent/InvalidContentException.java
@@ -53,7 +53,7 @@ public class InvalidContentException extends IOException {
* <code>IllegalStateException</code> since the cause of this
* exception can only be set when constructed.
*/
- public synchronized Throwable initCause(Throwable t) {
+ public Throwable initCause(Throwable t) {
throw new IllegalStateException();
}
}

Back to the top