After all day beating my head against the keybord I found where the
problem was. I reverted all changes to stable version and statrted to
add code bit by bit and noticed that after changes in
AttributeValue.toString() method my program started to fail again.
This code doesn't work:
@Override
public String toString() {
return getValue().toString();
}
But this code works:
@Override
public String toString() {
return ""+getValue();
}
But it should be the same... Maybe I misunderstand something, can
somebody explain me the difference?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---