Any issue in setting the accessiblilty of java.lang.reflect Field to true?
I’m trying to write a generic function to print the individual fields of any object. I’m using java.lang.reflect.Field to get the individual fields in the onject. However the code only works if I set the accessible property of that field to true, as highlighted in the code below. My only concern is, would this lead… Read More Any issue in setting the accessiblilty of java.lang.reflect Field to true?