From 728b702dfcccd074ffa0280ebe542b0a29a93bab Mon Sep 17 00:00:00 2001 From: Bas Leijdekkers Date: Fri, 28 Feb 2014 14:03:26 +0100 Subject: [PATCH] improve description --- .../src/inspectionDescriptions/ThreadLocalNotStaticFinal.html | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ThreadLocalNotStaticFinal.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ThreadLocalNotStaticFinal.html index 2cb9e55aa170..e78d9c1e5afe 100644 --- a/plugins/InspectionGadgets/src/inspectionDescriptions/ThreadLocalNotStaticFinal.html +++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ThreadLocalNotStaticFinal.html @@ -1,5 +1,6 @@ +Reports fields of type java.lang.ThreadLocal which are not declared static final. In the most common case a java.lang.ThreadLocal instance associates state with a thread. A non-static non-final java.lang.ThreadLocal field associates state with