Commit 7af2201bb3b71767ff1ce859c6f7a556368d7e07
1 parent
d40862c6
Exists in
master
Recolocado construtor que permite iniciar contexto desativado ou
ativado.
Showing
1 changed file
with
3 additions
and
3 deletions
Show diff stats
impl/core/src/main/java/br/gov/frameworkdemoiselle/internal/context/ThreadLocalContext.java
... | ... | @@ -58,9 +58,9 @@ public class ThreadLocalContext extends AbstractCustomContext { |
58 | 58 | super(scope, true); |
59 | 59 | } |
60 | 60 | |
61 | -// public ThreadLocalContext(final Class<? extends Annotation> scope, boolean active) { | |
62 | -// super(scope, active); | |
63 | -// } | |
61 | + public ThreadLocalContext(final Class<? extends Annotation> scope, boolean active) { | |
62 | + super(scope, active); | |
63 | + } | |
64 | 64 | |
65 | 65 | @Override |
66 | 66 | protected Store getStore() { | ... | ... |