mirror of
https://git.freebsd.org/ports.git
synced 2025-05-04 23:47:37 -04:00
Commit b7f05445c0
has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner)
11 lines
472 B
Text
11 lines
472 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.
|