Skip to content
Snippets Groups Projects
Commit e67fdfc5 authored by Vincent Massol's avatar Vincent Massol
Browse files

[Misc] Code style

parent 3c460dfa
No related branches found
No related tags found
No related merge requests found
...@@ -94,7 +94,7 @@ protected ExecutionContext initExecutionContext() throws ExecutionContextExcepti ...@@ -94,7 +94,7 @@ protected ExecutionContext initExecutionContext() throws ExecutionContextExcepti
{ {
// Keep a reference to the Execution component to avoid a lookup in #cleanupExecutionContext() in case this // Keep a reference to the Execution component to avoid a lookup in #cleanupExecutionContext() in case this
// thread is stopped after the Component Manager disposes its components. // thread is stopped after the Component Manager disposes its components.
execution = Utils.getComponent(Execution.class); this.execution = Utils.getComponent(Execution.class);
ExecutionContextManager ecim = Utils.getComponent(ExecutionContextManager.class); ExecutionContextManager ecim = Utils.getComponent(ExecutionContextManager.class);
ExecutionContext context = new ExecutionContext(); ExecutionContext context = new ExecutionContext();
...@@ -112,7 +112,7 @@ protected void cleanupExecutionContext() ...@@ -112,7 +112,7 @@ protected void cleanupExecutionContext()
{ {
// We must ensure we clean the ThreadLocal variables located in the Execution // We must ensure we clean the ThreadLocal variables located in the Execution
// component as otherwise we will have a potential memory leak. // component as otherwise we will have a potential memory leak.
execution.removeContext(); this.execution.removeContext();
} }
@Override @Override
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment