Commit 348cb50c57b4d1994cd5880b14066e3d57a0bf5c
1 parent
747b465e
Exists in
master
Ajuste no cache de configuração para ficar estático
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
impl/core/src/main/java/br/gov/frameworkdemoiselle/internal/interceptor/ConfigurationInterceptor.java
| ... | ... | @@ -55,10 +55,10 @@ public class ConfigurationInterceptor implements Serializable { |
| 55 | 55 | |
| 56 | 56 | private static final long serialVersionUID = 1L; |
| 57 | 57 | |
| 58 | - private List<Class<?>> cache = new ArrayList<Class<?>>(); | |
| 58 | + private static List<Class<?>> cache = new ArrayList<Class<?>>(); | |
| 59 | 59 | |
| 60 | 60 | @AroundInvoke |
| 61 | - public synchronized Object manage(final InvocationContext ic) throws Exception { | |
| 61 | + public static synchronized Object manage(final InvocationContext ic) throws Exception { | |
| 62 | 62 | Class<?> type = ic.getTarget().getClass(); |
| 63 | 63 | |
| 64 | 64 | if (!cache.contains(type)) { | ... | ... |