babitha
(Babitha Dekka)
1
I write this getter/setter to list from VS code source menu:
And a thorough description of the problem / question:Preformatted text
public void setSaveTime(final Date saveTime)
{
this.saveTime = saveTime;
}
public Date getSaveTime()
{
return saveTime;
}
And Sonar reporting two issues:
1.Store a copy of "saveTime". and
2. Return a copy of "saveTime"
Colin
(Colin)
2
Hey there.
If you believe you’re facing a false-positive, please read this post and update your topic with the required information.