Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
},
{
"key": "AT_NONATOMIC_64BIT_PRIMITIVE",
"name": "Multi-threading - This write of this 64-bit primitive variable may not atomic",
"name": "Multi-threading - This write of this 64-bit primitive variable may not be atomic",
"type": "BUG",
"severity": "MAJOR",
"url": "https://spotbugs.readthedocs.io/en/latest/bugDescriptions.html#at-nonatomic-64bit-primitive"
Expand Down Expand Up @@ -365,6 +365,13 @@
"severity": "MAJOR",
"url": "https://spotbugs.readthedocs.io/en/latest/bugDescriptions.html#ct-constructor-throw"
},
{
"key": "CWO_CLOSED_WITHOUT_OPENED",
"name": "Multi-threading - Method releases lock without opening it",
"type": "BUG",
"severity": "MAJOR",
"url": "https://spotbugs.readthedocs.io/en/latest/bugDescriptions.html#cwo-closed-without-opened"
},
{
"key": "DB_DUPLICATE_BRANCHES",
"name": "Style - Method uses the same code for two branches",
Expand Down Expand Up @@ -624,9 +631,16 @@
"severity": "MAJOR",
"url": "https://spotbugs.readthedocs.io/en/latest/bugDescriptions.html#dmi-long-bits-to-double-invoked-on-int"
},
{
"key": "DMI_MISLEADING_SUBSTRING",
"name": "Style - Invocation of substring(0), which returns the same as toString()",
"type": "CODE_SMELL",
"severity": "MAJOR",
"url": "https://spotbugs.readthedocs.io/en/latest/bugDescriptions.html#dmi-misleading-substring"
},
{
"key": "DMI_NONSERIALIZABLE_OBJECT_WRITTEN",
"name": "Style - Non serializable object written to ObjectOutput",
"name": "Style - Non-serializable object written to ObjectOutput",
"type": "CODE_SMELL",
"severity": "MAJOR",
"url": "https://spotbugs.readthedocs.io/en/latest/bugDescriptions.html#dmi-nonserializable-object-written"
Expand Down Expand Up @@ -1585,7 +1599,7 @@
},
{
"key": "J2EE_STORE_OF_NON_SERIALIZABLE_OBJECT_INTO_SESSION",
"name": "Bad practice - Store of non serializable object into HttpSession",
"name": "Bad practice - Store of non-serializable object into HttpSession",
"type": "CODE_SMELL",
"severity": "MAJOR",
"url": "https://spotbugs.readthedocs.io/en/latest/bugDescriptions.html#j2ee-store-of-non-serializable-object-into-session"
Expand Down
Loading