]> source.dussan.org Git - sonarqube.git/blob
c50a2185d2f1482b4037d87eb5c488d1e025b4c2
[sonarqube.git] /
1 <p>This code calls a method and ignores the return value. The return value is the same type as the type the 
2 method is invoked on, and from our analysis it looks like the return value might be important (e.g., like 
3 ignoring the return value of <code>String.toLowerCase()</code>).
4 </p>
5 <p>We are guessing that ignoring the return value might be a bad idea just from a simple analysis of the 
6 body of the method. You can use a <code>@CheckReturnValue</code> annotation to instruct FindBugs as to whether 
7 ignoring the return value of this method is important or acceptable.<p>
8 <p>Please investigate this closely to decide whether it is OK to ignore the return value. </p>