This post originated from an RSS feed registered with Java Buzz
by News Manager.
Original Post: Bill Pugh of the University of Maryland has released FindBugs 1.1, an automated open source tool...
Feed Title: Cafe au Lait
Feed URL: http://www.cafeaulait.org/today.rss
Feed Description: Cafe au Lait is the preeminent independent source of Java information on the net. Unlike many other Java sites, Cafe au Lait is neither beholden to specific companies nor to advertisers. At Cafe au Lait you'll find many resources to help you develop your Java programming skills here including daily news summaries, FAQ lists, tutorials, course notes, examples, exercises, book reviews, user groups and more.
Bill Pugh of the University of Maryland has released FindBugs 1.1, an automated open source tool for finding potential bugs in Java code. This release attempts to reduce the number of false positives and increase the number of null pointer dereferences it can detect. This release also adds several new bug detectors including one "for computing the absolute value of a random 32 bit integer or of a hashcode. This is broken because Math.abs(Integer.MIN_VALUE) == Integer.MIN_VALUE, and thus result of calling Math.abs, which is expected to be nonnegative, will in fact be negative one time out of 2 32, which will invariably be the time your boss is demoing the software to your customers." More...