Commit daacc597559e542eb026e22eaca5d118e5106ebb
1 parent
8e309ba0
Exists in
master
Ajuste no nome do proxy de configuração
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
impl/core/src/main/java/br/gov/frameworkdemoiselle/internal/bootstrap/ConfigurationBootstrap.java
... | ... | @@ -94,7 +94,7 @@ public class ConfigurationBootstrap extends AbstractStrategyBootstrap<Configurat |
94 | 94 | @SuppressWarnings("unchecked") |
95 | 95 | private Class<Object> createProxy(Class<Object> type) throws Exception { |
96 | 96 | String superClassName = type.getCanonicalName(); |
97 | - String chieldClassName = superClassName + "__DemoiselleProxy"; | |
97 | + String chieldClassName = superClassName + "_$$_DemoiselleProxy"; | |
98 | 98 | |
99 | 99 | Map<String, Class<Object>> cacheProxy = Collections.synchronizedMap(new HashMap<String, Class<Object>>());; |
100 | 100 | ... | ... |