Hello everyone, I have a java object with some attributes like: id, name, surname, status. I have no idea what is wrong but whenever i try to access some property it always gives me twice from the same property like the following: Does any of you had the same problem :/ asked 13.07.2017 at 09:09 Tano93 |
Could it be, that the status field is public and also has a public getter? answered 17.07.2017 at 03:39 Reguel Werme... ♦♦ Thank you so much, as you said the mistake was that i have public field and also public getter, have a nice day :)
(17.07.2017 at 03:26)
Tano93
|
Once you sign in you will be able to subscribe for any updates here
By RSS:Markdown Basics
Tags:
Asked: 13.07.2017 at 09:09
Seen: 1,161 times
Last updated: 18.07.2017 at 08:44
can you share the outline of this java class? Could it be, that the
status
field is public and also has a public getter? Or is this an overriden property of a parent class?