Project Information
Project:
<<unnamed project>>
FindBugs version: 1.3.5
Code analyzed:
- E:\build\root\Release\portalui\10.3.3.x\ptwebui\portalnavigation\build\x86\classes\java
Metrics
2286 lines of code analyzed,
in 17 classes,
in 3 packages.
High Priority Warnings |
|
0.00 |
Medium Priority Warnings |
8 |
3.50 |
Total Warnings
|
8
|
3.50
|
(* Defects per Thousand lines of non-commenting source statements)
Contents
Summary
Warnings
Click on a warning row to see full context information.
DE
|
com.plumtree.portalnavigation.views.NavigationCommonVerticalView.Write508ShortcutsSection(HTMLElementCollection) might ignore java.lang.Exception |
|
Bug type DE_MIGHT_IGNORE (click for details)
In class com.plumtree.portalnavigation.views.NavigationCommonVerticalView In method com.plumtree.portalnavigation.views.NavigationCommonVerticalView.Write508ShortcutsSection(HTMLElementCollection) Exception class java.lang.Exception At NavigationCommonVerticalView.java:[line 253]
|
DLS
|
Dead store to tCell in com.plumtree.portalnavigation.views.NavigationAccessibleLeftVerticalView.AddStandardListRow(HTMLTable, HTMLElement) |
|
Bug type DLS_DEAD_LOCAL_STORE (click for details)
In class com.plumtree.portalnavigation.views.NavigationAccessibleLeftVerticalView In method com.plumtree.portalnavigation.views.NavigationAccessibleLeftVerticalView.AddStandardListRow(HTMLTable, HTMLElement) Local variable named tCell At NavigationAccessibleLeftVerticalView.java:[line 347]
|
DLS
|
Dead store to tCell in com.plumtree.portalnavigation.views.NavigationCommonVerticalView.AddStandardListBoldRow(HTMLTable, String) |
|
Bug type DLS_DEAD_LOCAL_STORE (click for details)
In class com.plumtree.portalnavigation.views.NavigationCommonVerticalView In method com.plumtree.portalnavigation.views.NavigationCommonVerticalView.AddStandardListBoldRow(HTMLTable, String) Local variable named tCell At NavigationCommonVerticalView.java:[line 826]
|
DLS
|
Dead store to tCell in com.plumtree.portalnavigation.views.NavigationCommonVerticalView.AddStandardListRow(HTMLTable, ASURL) |
|
Bug type DLS_DEAD_LOCAL_STORE (click for details)
In class com.plumtree.portalnavigation.views.NavigationCommonVerticalView In method com.plumtree.portalnavigation.views.NavigationCommonVerticalView.AddStandardListRow(HTMLTable, ASURL) Local variable named tCell At NavigationCommonVerticalView.java:[line 775]
|
DLS
|
Dead store to tCell in com.plumtree.portalnavigation.views.NavigationCommonVerticalView.AddStandardListRow(HTMLTable, HTMLAnchor) |
|
Bug type DLS_DEAD_LOCAL_STORE (click for details)
In class com.plumtree.portalnavigation.views.NavigationCommonVerticalView In method com.plumtree.portalnavigation.views.NavigationCommonVerticalView.AddStandardListRow(HTMLTable, HTMLAnchor) Local variable named tCell At NavigationCommonVerticalView.java:[line 798]
|
DLS
|
Dead store to tCell in com.plumtree.portalnavigation.views.NavigationCommonVerticalView.AddSubSectionListRow(HTMLTable, HTMLAnchor) |
|
Bug type DLS_DEAD_LOCAL_STORE (click for details)
In class com.plumtree.portalnavigation.views.NavigationCommonVerticalView In method com.plumtree.portalnavigation.views.NavigationCommonVerticalView.AddSubSectionListRow(HTMLTable, HTMLAnchor) Local variable named tCell At NavigationCommonVerticalView.java:[line 896]
|
DLS
|
Dead store to application in com.plumtree.portalnavigation.views.NavigationJSPortalMenuDropDownView.Display() |
|
Bug type DLS_DEAD_LOCAL_STORE (click for details)
In class com.plumtree.portalnavigation.views.NavigationJSPortalMenuDropDownView In method com.plumtree.portalnavigation.views.NavigationJSPortalMenuDropDownView.Display() Local variable named application At NavigationJSPortalMenuDropDownView.java:[line 139]
|
NP
|
Load of known null value in com.plumtree.portalnavigation.views.NavigationHorizontalComboBoxView.WriteMandLinksSection(HTMLTableRow) |
|
Bug type NP_LOAD_OF_KNOWN_NULL_VALUE (click for details)
In class com.plumtree.portalnavigation.views.NavigationHorizontalComboBoxView In method com.plumtree.portalnavigation.views.NavigationHorizontalComboBoxView.WriteMandLinksSection(HTMLTableRow) At NavigationHorizontalComboBoxView.java:[line 495]
|
This method might ignore an exception. In general, exceptions
should be handled or reported in some way, or they should be thrown
out of the method.
This instruction assigns a value to a local variable,
but the value is not read or used in any subsequent instruction.
Often, this indicates an error, because the value computed is never
used.
Note that Sun's javac compiler often generates dead stores for
final local variables. Because FindBugs is a bytecode-based tool,
there is no easy way to eliminate these false positives.
The variable referenced at this point is known to be null due to an earlier
check against null. Although this is valid, it might be a mistake (perhaps you
intended to refer to a different variable, or perhaps the earlier check to see if the
variable is null should have been a check to see if it was nonnull).