Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarsten Hammer2020-11-01 10:56:40 +0000
committerThomas Watson2020-11-09 16:00:39 +0000
commita16b81529f917451953043dcef060d5b2541566d (patch)
tree149602ec96bcda22763ee07aecf8f76c7f77612b
parentf6d40224153ea9561afbf7f5fc2e2e330029d0e8 (diff)
downloadrt.equinox.bundles-a16b81529f917451953043dcef060d5b2541566d.tar.gz
rt.equinox.bundles-a16b81529f917451953043dcef060d5b2541566d.tar.xz
rt.equinox.bundles-a16b81529f917451953043dcef060d5b2541566d.zip
is serializable but also an inner class of a non-serializable class This Serializable class is an inner class of a non-serializable class. Thus, attempts to serialize it will also attempt to associate instance of the outer class with which it is associated, leading to a runtime error. If possible, making the inner class a static inner class should solve the problem. Making the outer class serializable might also work, but that would mean serializing an instance of the inner class would always also serialize the instance of the outer class, which it often not what you really want. Rank: Troubling (14), confidence: High Pattern: SE_BAD_FIELD_INNER_CLASS Type: Se, Category: BAD_PRACTICE (Bad practice) Change-Id: I06c93020982fd2a593189bb5650e2734410c0134 Signed-off-by: Carsten Hammer <carsten.hammer@t-online.de>
-rw-r--r--bundles/org.eclipse.equinox.http.servlet/src/org/eclipse/equinox/http/servlet/internal/context/ProxyContext.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/bundles/org.eclipse.equinox.http.servlet/src/org/eclipse/equinox/http/servlet/internal/context/ProxyContext.java b/bundles/org.eclipse.equinox.http.servlet/src/org/eclipse/equinox/http/servlet/internal/context/ProxyContext.java
index c668225a6..4c66f40ae 100644
--- a/bundles/org.eclipse.equinox.http.servlet/src/org/eclipse/equinox/http/servlet/internal/context/ProxyContext.java
+++ b/bundles/org.eclipse.equinox.http.servlet/src/org/eclipse/equinox/http/servlet/internal/context/ProxyContext.java
@@ -67,7 +67,7 @@ public class ProxyContext {
ContextAttributes contextAttributes = attributesMap.get(controller);
if (contextAttributes == null) {
- contextAttributes = new ContextAttributes(controller);
+ contextAttributes = new ContextAttributes(controller, proxyContextTempDir);
attributesMap.put(controller, contextAttributes);
}
@@ -122,13 +122,13 @@ public class ProxyContext {
return directory.delete();
}
- public class ContextAttributes
+ public static class ContextAttributes
extends Dictionary<String, Object> implements Serializable {
private static final long serialVersionUID = 1916670423277243587L;
private final AtomicInteger referenceCount = new AtomicInteger();
- public ContextAttributes(ContextController controller) {
+ public ContextAttributes(ContextController controller, File proxyContextTempDir) {
if (proxyContextTempDir != null) {
File contextTempDir = new File(
proxyContextTempDir,

Back to the top