FindBugs Report

Project Information

FindBugs version: 2.0.2

Metrics

26255 lines of code analyzed, in 475 classes, in 41 packages.

Metric Total Density*
High Priority Warnings 1 0.04
Medium Priority Warnings 0.00
Total Warnings 1 0.04

(* Defects per Thousand lines of non-commenting source statements)



Contents

Summary

Warning Type Number
Internationalization Warnings 1
Total 1

Warnings

Click on a warning row to see full context information.

Internationalization Warnings

Code Warning
Dm Found reliance on default encoding in com.sun.syndication.io.XmlReader.getXmlProlog(BufferedInputStream, String): new String(byte[], int, int)

Details

DM_DEFAULT_ENCODING: Reliance on default encoding

Found a call to a method which will perform a byte to String (or String to byte) conversion, and will assume that the default platform encoding is suitable. This will cause the application behaviour to vary between platforms. Use an alternative API and specify a charset name or Charset object explicitly.