forked from Lainports/opnsense-ports
Taken from: https://github.com/freebsd/freebsd-ports.git Commit id: 5070672073b68be364139bc6b3a89100bd17d331
13 lines
512 B
Text
13 lines
512 B
Text
FindBugs looks for bugs in Java programs. It is based on the concept of bug
|
|
patterns. A bug pattern is a code idiom that is often an error. Bug patterns
|
|
arise for a variety of reasons:
|
|
|
|
* Difficult language features
|
|
* Misunderstood API methods
|
|
* Misunderstood invariants when code is modified during maintenance
|
|
* Garden variety mistakes: typos, use of the wrong boolean operator
|
|
|
|
FindBugs uses static analysis to inspect Java bytecode for occurrences of
|
|
bug patterns.
|
|
|
|
WWW: http://findbugs.sourceforge.net/
|