Commit cffdad74faf440c17fb155beb379bbd4ed695220
1 parent
466843a6
Exists in
master
IN PROGRESS - issue FWK-146: Atributos anotados com @ManagedProperty não
consideram métodos "isXXX" como equivalentes a um método get https://demoiselle.atlassian.net/browse/FWK-146 Bug corrigido
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
impl/core/src/main/java/br/gov/frameworkdemoiselle/internal/implementation/ManagedType.java
... | ... | @@ -220,7 +220,7 @@ public class ManagedType { |
220 | 220 | getterMethodName = new StringBuffer() |
221 | 221 | .append("is") |
222 | 222 | .append(field.getName().substring(0, 1).toUpperCase()) |
223 | - .append(field.getName().substring(1).toUpperCase()); | |
223 | + .append(field.getName().substring(1)); | |
224 | 224 | |
225 | 225 | try { |
226 | 226 | getterMethod = type.getMethod(getterMethodName.toString()); | ... | ... |