fixes bug#AL-1619

master
Fabio Faria 2022-11-18 15:41:20 -03:00
parent 1c1e9147ac
commit 97207d136c
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ public class Teste {
Map<String, Object> memberValues = (Map<String, Object>) campo.get(obj); Map<String, Object> memberValues = (Map<String, Object>) campo.get(obj);
Object tela = memberValues.get("tela"); Object tela = memberValues.get("tela");
if(tela != null) { if(tela != null) {
memberValues.put("tela", "Teste2"); memberValues.put("tela", "Teste2 ");
} }
System.out.println(classe.tela()); System.out.println(classe.tela());