The issue you are running into is because you made the HOST variable public, when it was package previously. Findbugs thinks that you want HOST to be a constant because it is ALL CAPS and is only set once and read all other times. By making it public it is now difficult to ensure that it is never written to, hence the suggestion to make it final. I would prefer to actually switch it over to private and add in a new public method that return the value of HOST.
--Bobby Evans On 6/26/12 6:01 AM, "madhu phatak" <phatak....@gmail.com> wrote: Hi, I have submitted a patch for jira (HADOOP-8521) which is giving findbug( https://issues.apache.org/jira/browse/HADOOP-8521) error. To fix the issue,I have to duplicate the StreamUtil class to the newly introduced mapreduce package.Is it a good practice or is there other way to fix this? Regards, Madhukara Phatak -- https://github.com/zinnia-phatak-dev/Nectar