Commit b8ee65284fecba7e70f21d171f3308d9617b2528
1 parent
6bf71c43
Exists in
master
IN PROGRESS - issue FWK-143: java.lang.IllegalAccessError - Problemas ao
usar demoiselle em pacote EAR tendo WAR e EJB no JBoss EAP 6 https://demoiselle.atlassian.net/browse/FWK-143
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
impl/core/src/main/java/br/gov/frameworkdemoiselle/internal/context/AbstractCustomContext.java
| ... | ... | @@ -65,7 +65,7 @@ public abstract class AbstractCustomContext implements CustomContext { |
| 65 | 65 | |
| 66 | 66 | private transient ResourceBundle bundle; |
| 67 | 67 | |
| 68 | - AbstractCustomContext(final Class<? extends Annotation> scope) { | |
| 68 | + protected AbstractCustomContext(final Class<? extends Annotation> scope) { | |
| 69 | 69 | this.scope = scope; |
| 70 | 70 | this.active = false; |
| 71 | 71 | } |
| ... | ... | @@ -199,7 +199,7 @@ public abstract class AbstractCustomContext implements CustomContext { |
| 199 | 199 | return logger; |
| 200 | 200 | } |
| 201 | 201 | |
| 202 | - ContextualStore getContextualStore(){ | |
| 202 | + protected ContextualStore getContextualStore(){ | |
| 203 | 203 | CustomContextBootstrap bootstrap = Beans.getReference(CustomContextBootstrap.class); |
| 204 | 204 | return bootstrap.getContextualStore(); |
| 205 | 205 | } | ... | ... |