Snapshot aea001abfc1b38fec3a821bcd5174cc77dc75787 from master branch of git://git.jetbrains.org/idea/community.git
Change-Id: Icdea2a2bd7ad43b4d05967b1f0479db3bda1c93c
diff --git a/plugins/InspectionGadgets/src/META-INF/plugin.xml b/plugins/InspectionGadgets/src/META-INF/plugin.xml
deleted file mode 100644
index 32736c9..0000000
--- a/plugins/InspectionGadgets/src/META-INF/plugin.xml
+++ /dev/null
@@ -1,2623 +0,0 @@
-<idea-plugin version="2">
- <name>Inspection Gadgets</name>
- <id>InspectionGadgets</id>
- <vendor>JetBrains</vendor>
-
- <category>inspection</category>
- <version>1.0</version>
-
- <resource-bundle>com.siyeh.InspectionGadgetsBundle</resource-bundle>
-
- <extensions xmlns="com.intellij">
- <errorHandler implementation="com.intellij.diagnostic.ITNReporter"/>
-
- <!--group.names.abstraction.issues-->
- <localInspection language="JAVA" shortName="CastToConcreteClass" bundle="com.siyeh.InspectionGadgetsBundle" key="cast.to.concrete.class.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.abstraction.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.abstraction.CastToConcreteClassInspection"/>
- <localInspection language="JAVA" shortName="ClassReferencesSubclass" bundle="com.siyeh.InspectionGadgetsBundle"
- key="class.references.subclass.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.abstraction.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.abstraction.ClassReferencesSubclassInspection"/>
- <localInspection language="JAVA" suppressId="CollectionDeclaredAsConcreteClass" shortName="DeclareCollectionAsInterface"
- bundle="com.siyeh.InspectionGadgetsBundle" key="collection.declared.by.class.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.abstraction.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.abstraction.DeclareCollectionAsInterfaceInspection"/>
- <localInspection language="JAVA" shortName="FeatureEnvy" bundle="com.siyeh.InspectionGadgetsBundle" key="feature.envy.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.abstraction.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.abstraction.FeatureEnvyInspection"/>
- <localInspection language="JAVA" shortName="InstanceVariableOfConcreteClass" bundle="com.siyeh.InspectionGadgetsBundle"
- key="instance.variable.of.concrete.class.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.abstraction.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.abstraction.InstanceVariableOfConcreteClassInspection"/>
- <localInspection language="JAVA" suppressId="ChainOfInstanceofChecks" shortName="InstanceofChain" bundle="com.siyeh.InspectionGadgetsBundle"
- key="chain.of.instanceof.checks.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.abstraction.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.abstraction.InstanceofChainInspection"/>
- <localInspection language="JAVA" shortName="InstanceofInterfaces" bundle="com.siyeh.InspectionGadgetsBundle"
- key="instanceof.concrete.class.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.abstraction.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.abstraction.InstanceofInterfacesInspection"/>
- <localInspection language="JAVA" shortName="InstanceofThis" bundle="com.siyeh.InspectionGadgetsBundle" key="instanceof.check.for.this.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.abstraction.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.abstraction.InstanceofThisInspection"/>
- <localInspection language="JAVA" shortName="LocalVariableOfConcreteClass" bundle="com.siyeh.InspectionGadgetsBundle"
- key="local.variable.of.concrete.class.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.abstraction.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.abstraction.LocalVariableOfConcreteClassInspection"/>
- <localInspection language="JAVA" shortName="MagicNumber" bundle="com.siyeh.InspectionGadgetsBundle" key="magic.number.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.abstraction.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.abstraction.MagicNumberInspection"/>
- <localInspection language="JAVA" shortName="MethodOnlyUsedFromInnerClass" bundle="com.siyeh.InspectionGadgetsBundle"
- key="method.only.used.from.inner.class.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.abstraction.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.abstraction.MethodOnlyUsedFromInnerClassInspection"/>
- <localInspection language="JAVA" shortName="MethodReturnOfConcreteClass" bundle="com.siyeh.InspectionGadgetsBundle"
- key="method.return.concrete.class.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.abstraction.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.abstraction.MethodReturnOfConcreteClassInspection"/>
- <localInspection language="JAVA" shortName="OverlyStrongTypeCast" bundle="com.siyeh.InspectionGadgetsBundle" key="overly.strong.type.cast.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.abstraction.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.abstraction.OverlyStrongTypeCastInspection"/>
- <localInspection language="JAVA" suppressId="MethodParameterOfConcreteClass" shortName="ParameterOfConcreteClass"
- bundle="com.siyeh.InspectionGadgetsBundle" key="concrete.class.method.parameter.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.abstraction.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.abstraction.ParameterOfConcreteClassInspection"/>
- <localInspection language="JAVA" shortName="PublicMethodNotExposedInInterface" bundle="com.siyeh.InspectionGadgetsBundle"
- key="public.method.not.in.interface.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.abstraction.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.abstraction.PublicMethodNotExposedInInterfaceInspection"/>
- <localInspection language="JAVA" shortName="StaticMethodOnlyUsedInOneClass" bundle="com.siyeh.InspectionGadgetsBundle"
- key="static.method.only.used.in.one.class.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.abstraction.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.abstraction.StaticMethodOnlyUsedInOneClassInspection"/>
- <localInspection language="JAVA" shortName="StaticVariableOfConcreteClass" bundle="com.siyeh.InspectionGadgetsBundle"
- key="static.variable.of.concrete.class.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.abstraction.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.abstraction.StaticVariableOfConcreteClassInspection"/>
- <localInspection language="JAVA" shortName="TypeMayBeWeakened" bundle="com.siyeh.InspectionGadgetsBundle" key="type.may.be.weakened.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.abstraction.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.abstraction.TypeMayBeWeakenedInspection"/>
-
- <!--group.names.assignment.issues-->
- <localInspection language="JAVA" shortName="AssignmentToCatchBlockParameter" bundle="com.siyeh.InspectionGadgetsBundle"
- key="assignment.to.catch.block.parameter.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.assignment.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.assignment.AssignmentToCatchBlockParameterInspection"/>
- <localInspection language="JAVA" suppressId="AssignmentToCollectionOrArrayFieldFromParameter" shortName="AssignmentToCollectionFieldFromParameter"
- bundle="com.siyeh.InspectionGadgetsBundle" key="assignment.collection.array.field.from.parameter.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.assignment.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.assignment.AssignmentToCollectionFieldFromParameterInspection"/>
- <localInspection language="JAVA" shortName="AssignmentToDateFieldFromParameter" bundle="com.siyeh.InspectionGadgetsBundle"
- key="assignment.to.date.calendar.field.from.parameter.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.assignment.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.assignment.AssignmentToDateFieldFromParameterInspection"/>
- <localInspection language="JAVA" shortName="AssignmentToForLoopParameter" bundle="com.siyeh.InspectionGadgetsBundle"
- key="assignment.to.for.loop.parameter.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.assignment.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.assignment.AssignmentToForLoopParameterInspection"/>
- <localInspection language="JAVA" shortName="AssignmentToMethodParameter" bundle="com.siyeh.InspectionGadgetsBundle"
- key="assignment.to.method.parameter.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.assignment.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.assignment.AssignmentToMethodParameterInspection"/>
- <localInspection language="JAVA" shortName="AssignmentToNull" bundle="com.siyeh.InspectionGadgetsBundle" key="assignment.to.null.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.assignment.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.assignment.AssignmentToNullInspection"/>
- <localInspection language="JAVA" shortName="AssignmentToStaticFieldFromInstanceMethod" bundle="com.siyeh.InspectionGadgetsBundle"
- key="assignment.to.static.field.from.instance.method.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.assignment.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.assignment.AssignmentToStaticFieldFromInstanceMethodInspection"/>
- <localInspection language="JAVA" shortName="AssignmentToSuperclassField" bundle="com.siyeh.InspectionGadgetsBundle"
- key="assignment.to.superclass.field.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.assignment.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.assignment.AssignmentToSuperclassFieldInspection"/>
- <localInspection language="JAVA" shortName="AssignmentUsedAsCondition" bundle="com.siyeh.InspectionGadgetsBundle"
- key="assignment.used.as.condition.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.assignment.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.assignment.AssignmentUsedAsConditionInspection"/>
- <localInspection language="JAVA" suppressId="ValueOfIncrementOrDecrementUsed" shortName="IncrementDecrementUsedAsExpression"
- bundle="com.siyeh.InspectionGadgetsBundle" key="increment.decrement.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.assignment.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.assignment.IncrementDecrementUsedAsExpressionInspection"/>
- <localInspection language="JAVA" shortName="NestedAssignment" bundle="com.siyeh.InspectionGadgetsBundle" key="nested.assignment.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.assignment.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.assignment.NestedAssignmentInspection"/>
- <localInspection language="JAVA" suppressId="AssignmentReplaceableWithOperatorAssignment" shortName="ReplaceAssignmentWithOperatorAssignment"
- bundle="com.siyeh.InspectionGadgetsBundle" key="assignment.replaceable.with.operator.assignment.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.assignment.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.assignment.ReplaceAssignmentWithOperatorAssignmentInspection"/>
-
- <!--group.names.bitwise.operation.issues-->
- <localInspection language="JAVA" suppressId="IncompatibleBitwiseMaskOperation" shortName="IncompatibleMask" bundle="com.siyeh.InspectionGadgetsBundle"
- key="incompatible.mask.operation.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.bitwise.operation.issues" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.bitwise.IncompatibleMaskInspection"/>
- <localInspection language="JAVA" shortName="PointlessBitwiseExpression" bundle="com.siyeh.InspectionGadgetsBundle"
- key="pointless.bitwise.expression.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.bitwise.operation.issues" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.bitwise.PointlessBitwiseExpressionInspection"/>
- <localInspection language="JAVA" shortName="ShiftOutOfRange" bundle="com.siyeh.InspectionGadgetsBundle"
- key="shift.operation.by.inappropriate.constant.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.bitwise.operation.issues" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.bitwise.ShiftOutOfRangeInspection"/>
-
- <!--group.names.probable.bugs-->
- <localInspection language="JAVA" suppressId="UseOfArchaicSystemPropertyAccessors" shortName="ArchaicSystemPropertyAccess"
- bundle="com.siyeh.InspectionGadgetsBundle" key="archaic.system.property.accessors.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.probable.bugs" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.ArchaicSystemPropertyAccessInspection"/>
- <localInspection language="JAVA" shortName="ArrayEquality" bundle="com.siyeh.InspectionGadgetsBundle" key="array.comparison.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.probable.bugs" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.ArrayEqualityInspection"/>
- <localInspection language="JAVA" shortName="ArrayEquals" bundle="com.siyeh.InspectionGadgetsBundle" key="equals.called.on.array.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.probable.bugs" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.ArrayEqualsInspection"/>
- <localInspection language="JAVA" shortName="ArrayHashCode" bundle="com.siyeh.InspectionGadgetsBundle" key="array.hash.code.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.probable.bugs" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.ArrayHashCodeInspection"/>
- <localInspection language="JAVA" shortName="AssertWithSideEffects" bundle="com.siyeh.InspectionGadgetsBundle"
- key="assert.with.side.effects.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.probable.bugs" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.AssertWithSideEffectsInspection"/>
- <localInspection language="JAVA" shortName="ConstantAssertCondition" bundle="com.siyeh.InspectionGadgetsBundle"
- key="constant.assert.condition.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.probable.bugs" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.ConstantAssertConditionInspection"/>
- <localInspection language="JAVA" shortName="CastConflictsWithInstanceof" bundle="com.siyeh.InspectionGadgetsBundle"
- key="cast.conflicts.with.instanceof.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.probable.bugs" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.CastConflictsWithInstanceofInspection"/>
- <localInspection language="JAVA" shortName="CastToIncompatibleInterface" bundle="com.siyeh.InspectionGadgetsBundle"
- key="casting.to.incompatible.interface.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.probable.bugs" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.CastToIncompatibleInterfaceInspection"/>
- <localInspection language="JAVA" shortName="ClassNewInstance" bundle="com.siyeh.InspectionGadgetsBundle" key="class.new.instance.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.probable.bugs" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.ClassNewInstanceInspection"/>
- <localInspection language="JAVA" shortName="CollectionAddedToSelf" bundle="com.siyeh.InspectionGadgetsBundle"
- key="collection.added.to.self.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.probable.bugs" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.CollectionAddedToSelfInspection"/>
- <localInspection language="JAVA" shortName="ComparableImplementedButEqualsNotOverridden" bundle="com.siyeh.InspectionGadgetsBundle"
- key="comparable.implemented.but.equals.not.overridden.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.probable.bugs" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.ComparableImplementedButEqualsNotOverriddenInspection"/>
- <localInspection language="JAVA" shortName="ComparatorMethodParameterNotUsed" bundle="com.siyeh.InspectionGadgetsBundle"
- key="comparator.method.parameter.not.used.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.probable.bugs" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.ComparatorMethodParameterNotUsedInspection"/>
- <localInspection language="JAVA" shortName="CompareToUsesNonFinalVariable" bundle="com.siyeh.InspectionGadgetsBundle"
- key="non.final.field.compareto.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.probable.bugs" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.CompareToUsesNonFinalVariableInspection"/>
- <localInspection language="JAVA" shortName="CovariantCompareTo" bundle="com.siyeh.InspectionGadgetsBundle" key="covariant.compareto.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.probable.bugs" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.CovariantCompareToInspection"/>
- <localInspection language="JAVA" shortName="CovariantEquals" bundle="com.siyeh.InspectionGadgetsBundle" key="covariant.equals.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.probable.bugs" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.CovariantEqualsInspection"/>
- <localInspection language="JAVA" suppressId="EmptyClassInitializer" shortName="EmptyInitializer" bundle="com.siyeh.InspectionGadgetsBundle"
- key="empty.class.initializer.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.probable.bugs" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.EmptyInitializerInspection"/>
- <localInspection language="JAVA" suppressId="StatementWithEmptyBody" shortName="EmptyStatementBody" bundle="com.siyeh.InspectionGadgetsBundle"
- key="statement.with.empty.body.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.probable.bugs" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.EmptyStatementBodyInspection"/>
- <localInspection language="JAVA" shortName="EqualsBetweenInconvertibleTypes" bundle="com.siyeh.InspectionGadgetsBundle"
- key="equals.between.inconvertible.types.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.probable.bugs" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.EqualsBetweenInconvertibleTypesInspection"/>
- <localInspection language="JAVA" suppressId="NonFinalFieldReferenceInEquals" shortName="EqualsUsesNonFinalVariable"
- bundle="com.siyeh.InspectionGadgetsBundle" key="non.final.field.in.equals.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.probable.bugs" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.EqualsUsesNonFinalVariableInspection"/>
- <localInspection language="JAVA" shortName="EqualsWhichDoesntCheckParameterClass" bundle="com.siyeh.InspectionGadgetsBundle"
- key="equals.doesnt.check.class.parameter.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.probable.bugs" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.EqualsWhichDoesntCheckParameterClassInspection"/>
- <localInspection language="JAVA" shortName="ThrowableInstanceNeverThrown" bundle="com.siyeh.InspectionGadgetsBundle"
- key="throwable.instance.never.thrown.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.probable.bugs" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.ThrowableInstanceNeverThrownInspection"/>
- <localInspection language="JAVA" shortName="ForLoopThatDoesntUseLoopVariable" bundle="com.siyeh.InspectionGadgetsBundle"
- key="for.loop.not.use.loop.variable.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.probable.bugs" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.ForLoopThatDoesntUseLoopVariableInspection"/>
- <localInspection language="JAVA" suppressId="NonFinalFieldReferencedInHashCode" shortName="HashCodeUsesNonFinalVariable"
- bundle="com.siyeh.InspectionGadgetsBundle" key="non.final.field.in.hashcode.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.probable.bugs" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.HashCodeUsesNonFinalVariableInspection"/>
- <localInspection language="JAVA" suppressId="ResultOfMethodCallIgnored" shortName="IgnoreResultOfCall" bundle="com.siyeh.InspectionGadgetsBundle"
- key="result.of.method.call.ignored.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.probable.bugs" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.IgnoreResultOfCallInspection"/>
- <localInspection language="JAVA" shortName="ImplicitArrayToString" bundle="com.siyeh.InspectionGadgetsBundle"
- key="implicit.array.to.string.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.probable.bugs" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.ImplicitArrayToStringInspection"/>
- <localInspection language="JAVA" shortName="InfiniteRecursion" bundle="com.siyeh.InspectionGadgetsBundle" key="infinite.recursion.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.probable.bugs" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.InfiniteRecursionInspection"/>
- <localInspection language="JAVA" shortName="InstanceofIncompatibleInterface" bundle="com.siyeh.InspectionGadgetsBundle"
- key="instanceof.with.incompatible.interface.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.probable.bugs" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.InstanceofIncompatibleInterfaceInspection"/>
- <localInspection language="JAVA" shortName="InstantiationOfUtilityClass" bundle="com.siyeh.InspectionGadgetsBundle"
- key="instantiation.utility.class.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.probable.bugs" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.InstantiationOfUtilityClassInspection"/>
- <localInspection language="JAVA" shortName="IteratorHasNextCallsIteratorNext" bundle="com.siyeh.InspectionGadgetsBundle"
- key="iterator.hasnext.which.calls.next.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.probable.bugs" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.IteratorHasNextCallsIteratorNextInspection"/>
- <localInspection language="JAVA" suppressId="IteratorNextCanNotThrowNoSuchElementException" shortName="IteratorNextDoesNotThrowNoSuchElementException"
- bundle="com.siyeh.InspectionGadgetsBundle" key="iterator.next.does.not.throw.nosuchelementexception.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.probable.bugs" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.IteratorNextDoesNotThrowNoSuchElementExceptionInspection"/>
- <localInspection language="JAVA" shortName="MalformedFormatString" bundle="com.siyeh.InspectionGadgetsBundle" key="malformed.format.string.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.probable.bugs" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.MalformedFormatStringInspection"/>
- <localInspection language="JAVA" shortName="MalformedRegex" bundle="com.siyeh.InspectionGadgetsBundle" key="malformed.regular.expression.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.probable.bugs" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.MalformedRegexInspection"/>
- <localInspection language="JAVA" shortName="MalformedXPath" bundle="com.siyeh.InspectionGadgetsBundle" key="malformed.xpath.expression.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.probable.bugs" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.MalformedXPathInspection"/>
- <localInspection language="JAVA" shortName="MathRandomCastToInt" bundle="com.siyeh.InspectionGadgetsBundle" key="math.random.cast.to.int.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.probable.bugs" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.MathRandomCastToIntInspection"/>
- <localInspection language="JAVA" suppressId="MismatchedReadAndWriteOfArray" shortName="MismatchedArrayReadWrite"
- bundle="com.siyeh.InspectionGadgetsBundle" key="mismatched.read.write.array.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.probable.bugs" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.MismatchedArrayReadWriteInspection"/>
- <localInspection language="JAVA" suppressId="MismatchedQueryAndUpdateOfCollection" shortName="MismatchedCollectionQueryUpdate"
- bundle="com.siyeh.InspectionGadgetsBundle" key="mismatched.update.collection.display.name" runForWholeFile="true"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.probable.bugs" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.MismatchedCollectionQueryUpdateInspection"/>
- <localInspection language="JAVA" suppressId="MismatchedQueryAndUpdateOfStringBuilder" shortName="MismatchedStringBuilderQueryUpdate"
- bundle="com.siyeh.InspectionGadgetsBundle" key="mismatched.string.builder.query.update.display.name" runForWholeFile="true"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.probable.bugs" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.MismatchedStringBuilderQueryUpdateInspection"/>
- <localInspection language="JAVA" shortName="MisspelledCompareTo" bundle="com.siyeh.InspectionGadgetsBundle" key="misspelled.compareto.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.probable.bugs" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.MisspelledCompareToInspection"/>
- <localInspection language="JAVA" shortName="MisspelledHashcode" bundle="com.siyeh.InspectionGadgetsBundle" key="misspelled.hashcode.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.probable.bugs" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.MisspelledHashcodeInspection"/>
- <localInspection language="JAVA" shortName="MisspelledEquals" bundle="com.siyeh.InspectionGadgetsBundle" key="misspelled.equals.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.probable.bugs" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.MisspelledEqualsInspection"/>
- <localInspection language="JAVA" shortName="MisspelledToString" bundle="com.siyeh.InspectionGadgetsBundle" key="misspelled.tostring.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.probable.bugs" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.MisspelledToStringInspection"/>
- <localInspection language="JAVA" shortName="NewStringBufferWithCharArgument" bundle="com.siyeh.InspectionGadgetsBundle"
- key="new.string.buffer.with.char.argument.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.probable.bugs" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.NewStringBufferWithCharArgumentInspection"/>
- <localInspection language="JAVA" suppressId="NonShortCircuitBooleanExpression" shortName="NonShortCircuitBoolean"
- bundle="com.siyeh.InspectionGadgetsBundle" key="non.short.circuit.boolean.expression.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.probable.bugs" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.NonShortCircuitBooleanInspection"/>
- <localInspection language="JAVA" shortName="NullArgumentToVariableArgMethod" bundle="com.siyeh.InspectionGadgetsBundle"
- key="null.argument.to.var.arg.method.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.probable.bugs" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.NullArgumentToVariableArgMethodInspection"/>
- <localInspection language="JAVA" shortName="NumberEquality" bundle="com.siyeh.InspectionGadgetsBundle" key="number.comparison.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.probable.bugs" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.NumberEqualityInspection"/>
- <localInspection language="JAVA" shortName="ObjectEquality" bundle="com.siyeh.InspectionGadgetsBundle" key="object.comparison.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.probable.bugs" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.ObjectEqualityInspection"/>
- <localInspection language="JAVA" shortName="ObjectEqualsNull" bundle="com.siyeh.InspectionGadgetsBundle" key="object.equals.null.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.probable.bugs" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.ObjectEqualsNullInspection"/>
- <localInspection language="JAVA" shortName="ObjectToString" bundle="com.siyeh.InspectionGadgetsBundle" key="default.tostring.call.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.probable.bugs" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.ObjectToStringInspection"/>
- <localInspection language="JAVA" shortName="PrimitiveArrayArgumentToVariableArgMethod" bundle="com.siyeh.InspectionGadgetsBundle"
- key="primitive.array.argument.to.var.arg.method.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.probable.bugs" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.PrimitiveArrayArgumentToVariableArgMethodInspection"/>
- <localInspection language="JAVA" shortName="ReflectionForUnavailableAnnotation" bundle="com.siyeh.InspectionGadgetsBundle"
- key="reflection.for.unavailable.annotation.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.probable.bugs" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.ReflectionForUnavailableAnnotationInspection"/>
- <localInspection language="JAVA" shortName="ReplaceAllDot" bundle="com.siyeh.InspectionGadgetsBundle" key="replace.all.dot.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.probable.bugs" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.ReplaceAllDotInspection"/>
- <localInspection language="JAVA" shortName="ResultOfObjectAllocationIgnored" bundle="com.siyeh.InspectionGadgetsBundle"
- key="result.of.object.allocation.ignored.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.probable.bugs" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.ResultOfObjectAllocationIgnoredInspection"/>
- <localInspection language="JAVA" suppressId="UseOfIndexZeroInJDBCResultSet" shortName="ResultSetIndexZero" bundle="com.siyeh.InspectionGadgetsBundle"
- key="use.0index.in.jdbc.resultset.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.probable.bugs" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.ResultSetIndexZeroInspection"/>
- <localInspection language="JAVA" suppressId="ReturnOfNull" shortName="ReturnNull" bundle="com.siyeh.InspectionGadgetsBundle"
- key="return.of.null.display.name" groupBundle="messages.InspectionsBundle" groupKey="group.names.probable.bugs"
- enabledByDefault="false" level="WARNING" implementationClass="com.siyeh.ig.bugs.ReturnNullInspection"/>
- <localInspection language="JAVA" suppressId="StaticMethodReferencedViaSubclass" shortName="StaticCallOnSubclass"
- bundle="com.siyeh.InspectionGadgetsBundle" key="static.method.via.subclass.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.probable.bugs" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.StaticCallOnSubclassInspection"/>
- <localInspection language="JAVA" shortName="StringConcatenationInFormatCall" bundle="com.siyeh.InspectionGadgetsBundle"
- key="string.concatenation.in.format.call.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.probable.bugs" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.StringConcatenationInFormatCallInspection"/>
- <localInspection language="JAVA" shortName="StringConcatenationInMessageFormatCall" bundle="com.siyeh.InspectionGadgetsBundle"
- key="string.concatenation.in.message.format.call.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.probable.bugs" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.StringConcatenationInMessageFormatCallInspection"/>
- <localInspection language="JAVA" shortName="StringConcatenationMissingWhitespace" bundle="com.siyeh.InspectionGadgetsBundle"
- key="string.concatenation.missing.whitespace.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.probable.bugs" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.StringConcatenationMissingWhitespaceInspection"/>
- <localInspection language="JAVA" suppressId="StaticFieldReferencedViaSubclass" shortName="StaticFieldReferenceOnSubclass"
- bundle="com.siyeh.InspectionGadgetsBundle" key="static.field.via.subclass.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.probable.bugs" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.StaticFieldReferenceOnSubclassInspection"/>
- <localInspection language="JAVA" shortName="StringEquality" bundle="com.siyeh.InspectionGadgetsBundle" key="string.comparison.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.probable.bugs" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.StringEqualityInspection"/>
- <localInspection language="JAVA" shortName="SubtractionInCompareTo" bundle="com.siyeh.InspectionGadgetsBundle"
- key="subtraction.in.compareto.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.probable.bugs" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.SubtractionInCompareToInspection"/>
- <localInspection language="JAVA" shortName="SuspiciousArrayCast" bundle="com.siyeh.InspectionGadgetsBundle"
- key="suspicious.array.cast.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.probable.bugs" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.SuspiciousArrayCastInspection"/>
- <localInspection language="JAVA" shortName="SuspiciousIndentAfterControlStatement" bundle="com.siyeh.InspectionGadgetsBundle"
- key="suspicious.indent.after.control.statement.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.probable.bugs" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.SuspiciousIndentAfterControlStatementInspection"/>
- <localInspection language="JAVA" shortName="SuspiciousSystemArraycopy" bundle="com.siyeh.InspectionGadgetsBundle"
- key="suspicious.system.arraycopy.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.probable.bugs" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.SuspiciousSystemArraycopyInspection"/>
- <localInspection language="JAVA" shortName="SuspiciousToArrayCall" bundle="com.siyeh.InspectionGadgetsBundle"
- key="suspicious.to.array.call.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.probable.bugs" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.SuspiciousToArrayCallInspection"/>
- <localInspection language="JAVA" shortName="TextLabelInSwitchStatement" bundle="com.siyeh.InspectionGadgetsBundle"
- key="text.label.in.switch.statement.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.probable.bugs" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.TextLabelInSwitchStatementInspection"/>
- <localInspection language="JAVA" shortName="ThrowableResultOfMethodCallIgnored" bundle="com.siyeh.InspectionGadgetsBundle"
- key="throwable.result.of.method.call.ignored.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.probable.bugs" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.ThrowableResultOfMethodCallIgnoredInspection"/>
- <localInspection language="JAVA" shortName="UseOfPropertiesAsHashtable" bundle="com.siyeh.InspectionGadgetsBundle"
- key="properties.object.as.hashtable.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.probable.bugs" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.UseOfPropertiesAsHashtableInspection"/>
- <localInspection language="JAVA" shortName="VariableNotUsedInsideIf" bundle="com.siyeh.InspectionGadgetsBundle"
- key="variable.not.used.inside.if.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.probable.bugs" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.bugs.VariableNotUsedInsideIfInspection"/>
-
- <!--group.names.class.structure-->
- <localInspection language="JAVA" shortName="AnonymousInnerClass" bundle="com.siyeh.InspectionGadgetsBundle" key="anonymous.inner.class.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.class.structure" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.classlayout.AnonymousInnerClassInspection"/>
- <localInspection language="JAVA" suppressId="ClassWithoutPackageStatement" shortName="ClassInTopLevelPackage" bundle="com.siyeh.InspectionGadgetsBundle"
- key="class.in.top.level.package.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.class.structure" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.classlayout.ClassInTopLevelPackageInspection"/>
- <localInspection language="JAVA" suppressId="NonStaticInitializer" shortName="ClassInitializer" bundle="com.siyeh.InspectionGadgetsBundle"
- key="class.initializer.display.name" groupBundle="messages.InspectionsBundle" groupKey="group.names.class.structure"
- enabledByDefault="false" level="WARNING" implementationClass="com.siyeh.ig.classlayout.ClassInitializerInspection"/>
- <localInspection language="JAVA" shortName="ClassMayBeInterface" bundle="com.siyeh.InspectionGadgetsBundle" key="class.may.be.interface.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.class.structure" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.classlayout.ClassMayBeInterfaceInspection"/>
- <localInspection language="JAVA" shortName="ClassNameDiffersFromFileName" bundle="com.siyeh.InspectionGadgetsBundle"
- key="class.name.differs.from.file.name.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.class.structure" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.classlayout.ClassNameDiffersFromFileNameInspection"/>
- <localInspection language="JAVA" shortName="ConstantDeclaredInAbstractClass" bundle="com.siyeh.InspectionGadgetsBundle"
- key="constant.declared.in.abstract.class.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.class.structure" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.classlayout.ConstantDeclaredInAbstractClassInspection"/>
- <localInspection language="JAVA" shortName="ConstantDeclaredInInterface" bundle="com.siyeh.InspectionGadgetsBundle"
- key="constant.declared.in.interface.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.class.structure" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.classlayout.ConstantDeclaredInInterfaceInspection"/>
- <localInspection language="JAVA" shortName="EmptyClass" bundle="com.siyeh.InspectionGadgetsBundle" key="empty.class.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.class.structure" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.classlayout.EmptyClassInspection"/>
- <localInspection language="JAVA" shortName="FinalClass" bundle="com.siyeh.InspectionGadgetsBundle" key="final.class.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.class.structure" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.classlayout.FinalClassInspection"/>
- <localInspection language="JAVA" shortName="FinalMethodInFinalClass" bundle="com.siyeh.InspectionGadgetsBundle"
- key="final.method.in.final.class.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.class.structure" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.classlayout.FinalMethodInFinalClassInspection"/>
- <localInspection language="JAVA" shortName="FinalMethod" bundle="com.siyeh.InspectionGadgetsBundle" key="final.method.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.class.structure" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.classlayout.FinalMethodInspection"/>
- <localInspection language="JAVA" shortName="FinalPrivateMethod" bundle="com.siyeh.InspectionGadgetsBundle" key="final.private.method.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.class.structure" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.classlayout.FinalPrivateMethodInspection"/>
- <localInspection language="JAVA" shortName="FinalStaticMethod" bundle="com.siyeh.InspectionGadgetsBundle" key="final.static.method.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.class.structure" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.classlayout.FinalStaticMethodInspection"/>
- <localInspection language="JAVA" suppressId="InnerClassOfInterface" shortName="InnerClassOnInterface" bundle="com.siyeh.InspectionGadgetsBundle"
- key="inner.class.on.interface.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.class.structure" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.classlayout.InnerClassOnInterfaceInspection"/>
- <localInspection language="JAVA" shortName="LimitedScopeInnerClass" bundle="com.siyeh.InspectionGadgetsBundle"
- key="limited.scope.inner.class.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.class.structure" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.classlayout.LimitedScopeInnerClassInspection"/>
- <localInspection language="JAVA" shortName="ListenerMayUseAdapter" bundle="com.siyeh.InspectionGadgetsBundle"
- key="listener.may.use.adapter.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.class.structure" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.classlayout.ListenerMayUseAdapterInspection"/>
- <localInspection language="JAVA" shortName="MarkerInterface" bundle="com.siyeh.InspectionGadgetsBundle" key="marker.interface.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.class.structure" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.classlayout.MarkerInterfaceInspection"/>
- <localInspection language="JAVA" shortName="MissingDeprecatedAnnotation" bundle="com.siyeh.InspectionGadgetsBundle"
- key="missing.deprecated.annotation.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.class.structure" enabledByDefault="false" level="WARNING" runForWholeFile="true"
- implementationClass="com.siyeh.ig.classlayout.MissingDeprecatedAnnotationInspection"/>
- <localInspection language="JAVA" suppressId="override" shortName="MissingOverrideAnnotation" bundle="com.siyeh.InspectionGadgetsBundle"
- key="missing.override.annotation.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.class.structure" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.classlayout.MissingOverrideAnnotationInspection"/>
- <localInspection language="JAVA" shortName="MultipleTopLevelClassesInFile" bundle="com.siyeh.InspectionGadgetsBundle"
- key="multiple.top.level.classes.in.file.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.class.structure" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.classlayout.MultipleTopLevelClassesInFileInspection"/>
- <localInspection language="JAVA" shortName="NonFinalFieldInEnum" bundle="com.siyeh.InspectionGadgetsBundle"
- key="non.final.field.in.enum.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.class.structure" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.classlayout.NonFinalFieldInEnumInspection"/>
- <localInspection language="JAVA" shortName="NonFinalUtilityClass" bundle="com.siyeh.InspectionGadgetsBundle"
- key="non.final.utility.class.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.class.structure" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.classlayout.NonFinalUtilityClassInspection"/>
- <localInspection language="JAVA" shortName="NoopMethodInAbstractClass" bundle="com.siyeh.InspectionGadgetsBundle"
- key="noop.method.in.abstract.class.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.class.structure" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.classlayout.NoopMethodInAbstractClassInspection"/>
- <localInspection language="JAVA" shortName="ProtectedMemberInFinalClass" bundle="com.siyeh.InspectionGadgetsBundle"
- key="protected.member.in.final.class.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.class.structure" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.classlayout.ProtectedMemberInFinalClassInspection"/>
- <localInspection language="JAVA" shortName="PublicConstructor" bundle="com.siyeh.InspectionGadgetsBundle"
- key="public.constructor.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.class.structure" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.classlayout.PublicConstructorInspection"/>
- <localInspection language="JAVA" shortName="PublicConstructorInNonPublicClass" bundle="com.siyeh.InspectionGadgetsBundle"
- key="public.constructor.in.non.public.class.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.class.structure" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.classlayout.PublicConstructorInNonPublicClassInspection"/>
- <localInspection language="JAVA" shortName="Singleton" bundle="com.siyeh.InspectionGadgetsBundle" key="singleton.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.class.structure" enabledByDefault="false" runForWholeFile="true"
- level="WARNING" implementationClass="com.siyeh.ig.classlayout.SingletonInspection"/>
- <localInspection language="JAVA" shortName="StaticNonFinalField" bundle="com.siyeh.InspectionGadgetsBundle" key="static.non.final.field.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.class.structure" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.classlayout.StaticNonFinalFieldInspection"/>
- <localInspection language="JAVA" shortName="UtilityClass" bundle="com.siyeh.InspectionGadgetsBundle" key="utility.class.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.class.structure" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.classlayout.UtilityClassInspection"/>
- <localInspection language="JAVA" shortName="UtilityClassWithPublicConstructor" bundle="com.siyeh.InspectionGadgetsBundle"
- key="utility.class.with.public.constructor.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.class.structure" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.classlayout.UtilityClassWithPublicConstructorInspection"/>
- <localInspection language="JAVA" shortName="UtilityClassWithoutPrivateConstructor" bundle="com.siyeh.InspectionGadgetsBundle"
- key="utility.class.without.private.constructor.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.class.structure" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.classlayout.UtilityClassWithoutPrivateConstructorInspection"/>
- <globalInspection shortName="MethodReturnAlwaysConstant" bundle="com.siyeh.InspectionGadgetsBundle"
- key="method.return.always.constant.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.class.structure" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.classlayout.MethodReturnAlwaysConstantInspection"/>
-
- <!--group.names.class.metrics-->
- <localInspection language="JAVA" suppressId="OverlyComplexAnonymousInnerClass" shortName="AnonymousClassComplexity"
- bundle="com.siyeh.InspectionGadgetsBundle" key="overly.complex.anonymous.inner.class.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.class.metrics" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.classmetrics.AnonymousClassComplexityInspection"/>
- <localInspection language="JAVA" suppressId="AnonymousInnerClassWithTooManyMethods" shortName="AnonymousClassMethodCount"
- bundle="com.siyeh.InspectionGadgetsBundle" key="anonymous.inner.class.with.too.many.methods.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.class.metrics" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.classmetrics.AnonymousClassMethodCountInspection"/>
- <localInspection language="JAVA" suppressId="OverlyComplexClass" shortName="ClassComplexity" bundle="com.siyeh.InspectionGadgetsBundle"
- key="overly.complex.class.display.name" groupBundle="messages.InspectionsBundle" groupKey="group.names.class.metrics"
- enabledByDefault="false" level="WARNING" implementationClass="com.siyeh.ig.classmetrics.ClassComplexityInspection"/>
- <localInspection language="JAVA" suppressId="OverlyCoupledClass" shortName="ClassCoupling" bundle="com.siyeh.InspectionGadgetsBundle"
- key="overly.coupled.class.display.name" groupBundle="messages.InspectionsBundle" groupKey="group.names.class.metrics"
- enabledByDefault="false" level="WARNING" implementationClass="com.siyeh.ig.classmetrics.ClassCouplingInspection"/>
- <localInspection language="JAVA" suppressId="ClassTooDeepInInheritanceTree" shortName="ClassInheritanceDepth" bundle="com.siyeh.InspectionGadgetsBundle"
- key="class.too.deep.display.name" groupBundle="messages.InspectionsBundle" groupKey="group.names.class.metrics"
- enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.classmetrics.ClassInheritanceDepthInspection"/>
- <localInspection language="JAVA" suppressId="InnerClassTooDeeplyNested" shortName="ClassNestingDepth" bundle="com.siyeh.InspectionGadgetsBundle"
- key="inner.class.too.deeply.nested.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.class.metrics" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.classmetrics.ClassNestingDepthInspection"/>
- <localInspection language="JAVA" suppressId="ClassWithTooManyConstructors" shortName="ConstructorCount" bundle="com.siyeh.InspectionGadgetsBundle"
- key="too.many.constructors.display.name" groupBundle="messages.InspectionsBundle" groupKey="group.names.class.metrics"
- enabledByDefault="false" level="WARNING" implementationClass="com.siyeh.ig.classmetrics.ConstructorCountInspection"/>
- <localInspection language="JAVA" suppressId="ClassWithTooManyFields" shortName="FieldCount" bundle="com.siyeh.InspectionGadgetsBundle"
- key="too.many.fields.display.name" groupBundle="messages.InspectionsBundle" groupKey="group.names.class.metrics"
- enabledByDefault="false" level="WARNING" implementationClass="com.siyeh.ig.classmetrics.FieldCountInspection"/>
- <localInspection language="JAVA" suppressId="ClassWithTooManyMethods" shortName="MethodCount" bundle="com.siyeh.InspectionGadgetsBundle"
- key="too.many.methods.display.name" groupBundle="messages.InspectionsBundle" groupKey="group.names.class.metrics"
- enabledByDefault="false" level="WARNING" implementationClass="com.siyeh.ig.classmetrics.MethodCountInspection"/>
-
- <!--group.names.cloning.issues-->
- <localInspection language="JAVA" shortName="CloneCallsConstructors" bundle="com.siyeh.InspectionGadgetsBundle"
- key="clone.instantiates.objects.with.constructor.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.cloning.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.cloneable.CloneCallsConstructorsInspection"/>
- <localInspection language="JAVA" suppressId="CloneDoesntCallSuperClone" shortName="CloneCallsSuperClone" bundle="com.siyeh.InspectionGadgetsBundle"
- key="clone.doesnt.call.super.clone.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.cloning.issues" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.cloneable.CloneCallsSuperCloneInspection"/>
- <localInspection language="JAVA" suppressId="CloneDoesntDeclareCloneNotSupportedException" shortName="CloneDeclaresCloneNotSupported"
- bundle="com.siyeh.InspectionGadgetsBundle" key="clone.doesnt.declare.clonenotsupportedexception.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.cloning.issues" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.cloneable.CloneDeclaresCloneNotSupportedInspection"/>
- <localInspection language="JAVA" shortName="CloneInNonCloneableClass" bundle="com.siyeh.InspectionGadgetsBundle"
- key="clone.method.in.non.cloneable.class.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.cloning.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.cloneable.CloneInNonCloneableClassInspection"/>
- <localInspection language="JAVA" suppressId="CloneableClassWithoutClone" shortName="CloneableImplementsClone" bundle="com.siyeh.InspectionGadgetsBundle"
- key="cloneable.class.without.clone.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.cloning.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.cloneable.CloneableImplementsCloneInspection"/>
-
- <!--group.names.control.flow.issues-->
- <localInspection language="JAVA" shortName="BreakStatement" bundle="com.siyeh.InspectionGadgetsBundle" key="break.statement.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.control.flow.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.controlflow.BreakStatementInspection"/>
- <localInspection language="JAVA" shortName="BreakStatementWithLabel" bundle="com.siyeh.InspectionGadgetsBundle"
- key="break.statement.with.label.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.control.flow.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.controlflow.BreakStatementWithLabelInspection"/>
- <localInspection language="JAVA" shortName="ConditionalExpression" bundle="com.siyeh.InspectionGadgetsBundle" key="conditional.expression.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.control.flow.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.controlflow.ConditionalExpressionInspection"/>
- <localInspection language="JAVA" shortName="ConditionalExpressionWithIdenticalBranches" bundle="com.siyeh.InspectionGadgetsBundle"
- key="conditional.expression.with.identical.branches.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.control.flow.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.controlflow.ConditionalExpressionWithIdenticalBranchesInspection"/>
- <localInspection language="JAVA" suppressId="ConfusingElseBranch" shortName="ConfusingElse" bundle="com.siyeh.InspectionGadgetsBundle"
- key="confusing.else.display.name" groupBundle="messages.InspectionsBundle" groupKey="group.names.control.flow.issues"
- enabledByDefault="false" level="WARNING" implementationClass="com.siyeh.ig.controlflow.ConfusingElseInspection"/>
- <localInspection language="JAVA" shortName="ConstantConditionalExpression" bundle="com.siyeh.InspectionGadgetsBundle"
- key="constant.conditional.expression.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.control.flow.issues" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.controlflow.ConstantConditionalExpressionInspection"/>
- <localInspection language="JAVA" shortName="ConstantIfStatement" bundle="com.siyeh.InspectionGadgetsBundle" key="constant.if.statement.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.control.flow.issues" enabledByDefault="true"
- level="WARNING" implementationClass="com.siyeh.ig.controlflow.ConstantIfStatementInspection"/>
- <localInspection language="JAVA" shortName="ContinueStatement" bundle="com.siyeh.InspectionGadgetsBundle" key="continue.statement.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.control.flow.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.controlflow.ContinueStatementInspection"/>
- <localInspection language="JAVA" shortName="ContinueStatementWithLabel" bundle="com.siyeh.InspectionGadgetsBundle"
- key="continue.statement.with.label.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.control.flow.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.controlflow.ContinueStatementWithLabelInspection"/>
- <localInspection language="JAVA" shortName="DefaultNotLastCaseInSwitch" bundle="com.siyeh.InspectionGadgetsBundle"
- key="default.not.last.case.in.switch.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.control.flow.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.controlflow.DefaultNotLastCaseInSwitchInspection"/>
- <localInspection language="JAVA" shortName="DoubleNegation" bundle="com.siyeh.InspectionGadgetsBundle" key="double.negation.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.control.flow.issues" enabledByDefault="true"
- level="WARNING" implementationClass="com.siyeh.ig.controlflow.DoubleNegationInspection"/>
- <localInspection language="JAVA" shortName="DuplicateBooleanBranch" bundle="com.siyeh.InspectionGadgetsBundle"
- key="duplicate.boolean.branch.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.control.flow.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.controlflow.DuplicateBooleanBranchInspection"/>
- <localInspection language="JAVA" shortName="DuplicateCondition" bundle="com.siyeh.InspectionGadgetsBundle" key="duplicate.condition.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.control.flow.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.controlflow.DuplicateConditionInspection"/>
- <localInspection language="JAVA" shortName="EnumSwitchStatementWhichMissesCases" bundle="com.siyeh.InspectionGadgetsBundle"
- key="enum.switch.statement.which.misses.cases.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.control.flow.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.controlflow.EnumSwitchStatementWhichMissesCasesInspection"/>
- <localInspection language="JAVA" suppressId="fallthrough" shortName="FallthruInSwitchStatement" bundle="com.siyeh.InspectionGadgetsBundle"
- key="fallthru.in.switch.statement.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.control.flow.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.controlflow.FallthruInSwitchStatementInspection"/>
- <localInspection language="JAVA" shortName="ForLoopReplaceableByWhile" bundle="com.siyeh.InspectionGadgetsBundle"
- key="for.loop.replaceable.by.while.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.control.flow.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.controlflow.ForLoopReplaceableByWhileInspection"/>
- <localInspection language="JAVA" shortName="ForLoopWithMissingComponent" bundle="com.siyeh.InspectionGadgetsBundle"
- key="for.loop.with.missing.component.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.control.flow.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.controlflow.ForLoopWithMissingComponentInspection"/>
- <localInspection language="JAVA" shortName="IfMayBeConditional" bundle="com.siyeh.InspectionGadgetsBundle" key="if.may.be.conditional.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.control.flow.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.controlflow.IfMayBeConditionalInspection"/>
- <localInspection language="JAVA" shortName="IfStatementWithIdenticalBranches" bundle="com.siyeh.InspectionGadgetsBundle"
- key="if.statement.with.identical.branches.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.control.flow.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.controlflow.IfStatementWithIdenticalBranchesInspection"/>
- <localInspection language="JAVA" shortName="IfStatementWithTooManyBranches" bundle="com.siyeh.InspectionGadgetsBundle"
- key="if.statement.with.too.many.branches.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.control.flow.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.controlflow.IfStatementWithTooManyBranchesInspection"/>
- <localInspection language="JAVA" shortName="InfiniteLoopStatement" bundle="com.siyeh.InspectionGadgetsBundle" key="infinite.loop.statement.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.control.flow.issues" enabledByDefault="true"
- level="WARNING" implementationClass="com.siyeh.ig.controlflow.InfiniteLoopStatementInspection"/>
- <localInspection language="JAVA" shortName="LabeledStatement" bundle="com.siyeh.InspectionGadgetsBundle" key="labeled.statement.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.control.flow.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.controlflow.LabeledStatementInspection"/>
- <localInspection language="JAVA" shortName="LoopConditionNotUpdatedInsideLoop" bundle="com.siyeh.InspectionGadgetsBundle"
- key="loop.condition.not.updated.inside.loop.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.control.flow.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.controlflow.LoopConditionNotUpdatedInsideLoopInspection"/>
- <localInspection language="JAVA" suppressId="LoopStatementThatDoesntLoop" shortName="LoopStatementsThatDontLoop"
- bundle="com.siyeh.InspectionGadgetsBundle" key="loop.statements.that.dont.loop.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.control.flow.issues" enabledByDefault="true"
- level="WARNING" implementationClass="com.siyeh.ig.controlflow.LoopStatementsThatDontLoopInspection"/>
- <localInspection language="JAVA" shortName="LoopWithImplicitTerminationCondition" bundle="com.siyeh.InspectionGadgetsBundle"
- key="loop.with.implicit.termination.condition.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.control.flow.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.controlflow.LoopWithImplicitTerminationConditionInspection"/>
- <localInspection language="JAVA" suppressId="ConditionalExpressionWithNegatedCondition" shortName="NegatedConditional"
- bundle="com.siyeh.InspectionGadgetsBundle" key="negated.conditional.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.control.flow.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.controlflow.NegatedConditionalInspection"/>
- <localInspection language="JAVA" shortName="NegatedEqualityExpression" bundle="com.siyeh.InspectionGadgetsBundle"
- key="negated.equality.expression.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.control.flow.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.controlflow.NegatedEqualityExpressionInspection"/>
- <localInspection language="JAVA" suppressId="IfStatementWithNegatedCondition" shortName="NegatedIfElse" bundle="com.siyeh.InspectionGadgetsBundle"
- key="negated.if.else.display.name" groupBundle="messages.InspectionsBundle" groupKey="group.names.control.flow.issues"
- enabledByDefault="false" level="WARNING" implementationClass="com.siyeh.ig.controlflow.NegatedIfElseInspection"/>
- <localInspection language="JAVA" shortName="NestedConditionalExpression" bundle="com.siyeh.InspectionGadgetsBundle"
- key="nested.conditional.expression.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.control.flow.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.controlflow.NestedConditionalExpressionInspection"/>
- <localInspection language="JAVA" shortName="NestedSwitchStatement" bundle="com.siyeh.InspectionGadgetsBundle" key="nested.switch.statement.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.control.flow.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.controlflow.NestedSwitchStatementInspection"/>
- <localInspection language="JAVA" shortName="OverlyComplexBooleanExpression" bundle="com.siyeh.InspectionGadgetsBundle"
- key="overly.complex.boolean.expression.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.control.flow.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.controlflow.OverlyComplexBooleanExpressionInspection"/>
- <localInspection language="JAVA" shortName="PointlessBooleanExpression" bundle="com.siyeh.InspectionGadgetsBundle"
- key="pointless.boolean.expression.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.control.flow.issues" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.controlflow.PointlessBooleanExpressionInspection"/>
- <localInspection language="JAVA" shortName="PointlessIndexOfComparison" bundle="com.siyeh.InspectionGadgetsBundle"
- key="pointless.indexof.comparison.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.control.flow.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.controlflow.PointlessIndexOfComparisonInspection"/>
- <localInspection language="JAVA" shortName="PointlessNullCheck" bundle="com.siyeh.InspectionGadgetsBundle" key="pointless.nullcheck.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.control.flow.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.controlflow.PointlessNullCheckInspection"/>
- <localInspection language="JAVA" shortName="SimplifiableConditionalExpression" bundle="com.siyeh.InspectionGadgetsBundle"
- key="simplifiable.conditional.expression.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.control.flow.issues" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.controlflow.SimplifiableConditionalExpressionInspection"/>
- <localInspection language="JAVA" shortName="SwitchStatementDensity" bundle="com.siyeh.InspectionGadgetsBundle"
- key="switch.statement.density.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.control.flow.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.controlflow.SwitchStatementDensityInspection"/>
- <localInspection language="JAVA" shortName="SwitchStatement" bundle="com.siyeh.InspectionGadgetsBundle" key="switch.statement.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.control.flow.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.controlflow.SwitchStatementInspection"/>
- <localInspection language="JAVA" suppressId="LocalVariableUsedAndDeclaredInDifferentSwitchBranches" shortName="SwitchStatementWithConfusingDeclaration"
- bundle="com.siyeh.InspectionGadgetsBundle" key="switch.statement.with.confusing.declaration.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.control.flow.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.controlflow.SwitchStatementWithConfusingDeclarationInspection"/>
- <localInspection language="JAVA" shortName="SwitchStatementWithTooFewBranches" bundle="com.siyeh.InspectionGadgetsBundle"
- key="switch.statement.with.too.few.branches.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.control.flow.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.controlflow.SwitchStatementWithTooFewBranchesInspection"/>
- <localInspection language="JAVA" shortName="SwitchStatementWithTooManyBranches" bundle="com.siyeh.InspectionGadgetsBundle"
- key="switch.statement.with.too.many.branches.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.control.flow.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.controlflow.SwitchStatementWithTooManyBranchesInspection"/>
- <localInspection language="JAVA" suppressId="SwitchStatementWithoutDefaultBranch" shortName="SwitchStatementsWithoutDefault"
- bundle="com.siyeh.InspectionGadgetsBundle" key="switch.statements.without.default.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.control.flow.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.controlflow.SwitchStatementsWithoutDefaultInspection"/>
- <localInspection language="JAVA" suppressId="RedundantIfStatement" shortName="TrivialIf" bundle="com.siyeh.InspectionGadgetsBundle"
- key="trivial.if.display.name" groupBundle="messages.InspectionsBundle" groupKey="group.names.control.flow.issues"
- enabledByDefault="true" level="WARNING" implementationClass="com.siyeh.ig.controlflow.TrivialIfInspection"/>
- <localInspection language="JAVA" suppressId="RedundantConditionalExpression" shortName="UnnecessaryConditionalExpression"
- bundle="com.siyeh.InspectionGadgetsBundle" key="unnecessary.conditional.expression.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.control.flow.issues" enabledByDefault="true"
- level="WARNING" implementationClass="com.siyeh.ig.controlflow.UnnecessaryConditionalExpressionInspection"/>
- <localInspection language="JAVA" shortName="UnnecessaryContinue" bundle="com.siyeh.InspectionGadgetsBundle" key="unnecessary.continue.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.control.flow.issues" enabledByDefault="true"
- level="WARNING" implementationClass="com.siyeh.ig.controlflow.UnnecessaryContinueInspection"/>
- <localInspection language="JAVA" shortName="UnnecessaryDefault" bundle="com.siyeh.InspectionGadgetsBundle" key="unnecessary.default.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.control.flow.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.controlflow.UnnecessaryDefaultInspection"/>
- <localInspection language="JAVA" shortName="UnnecessaryLabelOnBreakStatement" bundle="com.siyeh.InspectionGadgetsBundle"
- key="unnecessary.label.on.break.statement.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.control.flow.issues" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.controlflow.UnnecessaryLabelOnBreakStatementInspection"/>
- <localInspection language="JAVA" shortName="UnnecessaryLabelOnContinueStatement" bundle="com.siyeh.InspectionGadgetsBundle"
- key="unnecessary.label.on.continue.statement.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.control.flow.issues" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.controlflow.UnnecessaryLabelOnContinueStatementInspection"/>
- <localInspection language="JAVA" suppressId="UnnecessaryReturnStatement" shortName="UnnecessaryReturn" bundle="com.siyeh.InspectionGadgetsBundle"
- key="unnecessary.return.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.control.flow.issues" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.controlflow.UnnecessaryReturnInspection"/>
-
- <!--group.names.data.flow.issues-->
- <localInspection language="JAVA" shortName="BooleanVariableAlwaysNegated" bundle="com.siyeh.InspectionGadgetsBundle"
- key="boolean.variable.always.inverted.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.data.flow.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.dataflow.BooleanVariableAlwaysNegatedInspection"/>
- <localInspection language="JAVA" shortName="ConstantValueVariableUse" bundle="com.siyeh.InspectionGadgetsBundle"
- key="constant.value.variable.use.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.data.flow.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.dataflow.ConstantValueVariableUseInspection"/>
- <localInspection language="JAVA" shortName="LawOfDemeter" bundle="com.siyeh.InspectionGadgetsBundle" key="law.of.demeter.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.data.flow.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.dataflow.LawOfDemeterInspection"/>
- <localInspection language="JAVA" shortName="OrredNotEqualExpression" bundle="com.siyeh.InspectionGadgetsBundle"
- key="orred.not.equal.expression.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.data.flow.issues" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.dataflow.OrredNotEqualExpressionInspection"/>
- <localInspection language="JAVA" shortName="ReuseOfLocalVariable" bundle="com.siyeh.InspectionGadgetsBundle" key="reuse.of.local.variable.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.data.flow.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.dataflow.ReuseOfLocalVariableInspection"/>
- <localInspection language="JAVA" shortName="TooBroadScope" bundle="com.siyeh.InspectionGadgetsBundle" key="too.broad.scope.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.data.flow.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.dataflow.TooBroadScopeInspection"/>
- <localInspection language="JAVA" shortName="UnnecessaryLocalVariable" bundle="com.siyeh.InspectionGadgetsBundle"
- key="redundant.local.variable.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.data.flow.issues" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.dataflow.UnnecessaryLocalVariableInspection"/>
- <globalInspection shortName="BooleanMethodIsAlwaysInverted" bundle="messages.InspectionsBundle"
- key="boolean.method.is.always.inverted.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.data.flow.issues" enabledByDefault="true" level="WARNING"
- implementationClass="com.intellij.codeInspection.booleanIsAlwaysInverted.BooleanMethodIsAlwaysInvertedInspection"/>
-
- <!--group.names.dependency.issues-->
- <globalInspection shortName="ClassWithTooManyDependencies" bundle="com.siyeh.InspectionGadgetsBundle"
- key="class.with.too.many.dependencies.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.dependency.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.dependency.ClassWithTooManyDependenciesInspection"/>
- <globalInspection shortName="ClassWithTooManyDependents" bundle="com.siyeh.InspectionGadgetsBundle"
- key="class.with.too.many.dependents.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.dependency.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.dependency.ClassWithTooManyDependentsInspection"/>
- <globalInspection shortName="ClassWithTooManyTransitiveDependencies" bundle="com.siyeh.InspectionGadgetsBundle"
- key="class.with.too.many.transitive.dependencies.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.dependency.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.dependency.ClassWithTooManyTransitiveDependenciesInspection"/>
- <globalInspection shortName="ClassWithTooManyTransitiveDependents" bundle="com.siyeh.InspectionGadgetsBundle"
- key="class.with.too.many.transitive.dependents.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.dependency.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.dependency.ClassWithTooManyTransitiveDependentsInspection"/>
- <globalInspection shortName="CyclicClassDependency" bundle="com.siyeh.InspectionGadgetsBundle"
- key="cyclic.class.dependency.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.dependency.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.dependency.CyclicClassDependencyInspection"/>
- <globalInspection shortName="CyclicPackageDependency" bundle="com.siyeh.InspectionGadgetsBundle"
- key="cyclic.package.dependency.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.dependency.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.dependency.CyclicPackageDependencyInspection"/>
-
- <!--group.names.encapsulation.issues-->
- <localInspection language="JAVA" shortName="PackageVisibleField" bundle="com.siyeh.InspectionGadgetsBundle" key="package.visible.field.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.encapsulation.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.encapsulation.PackageVisibleFieldInspection"/>
- <localInspection language="JAVA" shortName="PackageVisibleInnerClass" bundle="com.siyeh.InspectionGadgetsBundle"
- key="package.visible.inner.class.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.encapsulation.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.encapsulation.PackageVisibleInnerClassInspection"/>
- <localInspection language="JAVA" shortName="ProtectedField" bundle="com.siyeh.InspectionGadgetsBundle" key="protected.field.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.encapsulation.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.encapsulation.ProtectedFieldInspection"/>
- <localInspection language="JAVA" shortName="ProtectedInnerClass" bundle="com.siyeh.InspectionGadgetsBundle" key="protected.inner.class.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.encapsulation.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.encapsulation.ProtectedInnerClassInspection"/>
- <localInspection language="JAVA" shortName="PublicField" bundle="com.siyeh.InspectionGadgetsBundle" key="public.field.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.encapsulation.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.encapsulation.PublicFieldInspection"/>
- <localInspection language="JAVA" shortName="PublicInnerClass" bundle="com.siyeh.InspectionGadgetsBundle" key="public.inner.class.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.encapsulation.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.encapsulation.PublicInnerClassInspection"/>
- <localInspection language="JAVA" suppressId="ReturnOfCollectionOrArrayField" shortName="ReturnOfCollectionField"
- bundle="com.siyeh.InspectionGadgetsBundle" key="return.of.collection.array.field.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.encapsulation.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.encapsulation.ReturnOfCollectionFieldInspection"/>
- <localInspection language="JAVA" shortName="ReturnOfDateField" bundle="com.siyeh.InspectionGadgetsBundle" key="return.date.calendar.field.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.encapsulation.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.encapsulation.ReturnOfDateFieldInspection"/>
- <localInspection language="JAVA" suppressId="AccessingNonPublicFieldOfAnotherObject" shortName="UseOfAnotherObjectsPrivateField"
- bundle="com.siyeh.InspectionGadgetsBundle" key="accessing.non.public.field.of.another.object.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.encapsulation.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.encapsulation.UseOfAnotherObjectsPrivateFieldInspection"/>
-
- <!--group.names.error.handling-->
- <localInspection language="JAVA" suppressId="ProhibitedExceptionCaught" shortName="BadExceptionCaught" bundle="com.siyeh.InspectionGadgetsBundle"
- key="bad.exception.caught.display.name" groupBundle="messages.InspectionsBundle" groupKey="group.names.error.handling"
- enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.errorhandling.BadExceptionCaughtInspection"/>
- <localInspection language="JAVA" suppressId="ProhibitedExceptionDeclared" shortName="BadExceptionDeclared" bundle="com.siyeh.InspectionGadgetsBundle"
- key="bad.exception.declared.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.error.handling" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.errorhandling.BadExceptionDeclaredInspection"/>
- <localInspection language="JAVA" suppressId="ProhibitedExceptionThrown" shortName="BadExceptionThrown" bundle="com.siyeh.InspectionGadgetsBundle"
- key="bad.exception.thrown.display.name" groupBundle="messages.InspectionsBundle" groupKey="group.names.error.handling"
- enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.errorhandling.BadExceptionThrownInspection"/>
- <localInspection language="JAVA" shortName="CaughtExceptionImmediatelyRethrown" bundle="com.siyeh.InspectionGadgetsBundle"
- key="caught.exception.immediately.rethrown.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.error.handling" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.errorhandling.CaughtExceptionImmediatelyRethrownInspection"/>
- <localInspection language="JAVA" shortName="CheckedExceptionClass" bundle="com.siyeh.InspectionGadgetsBundle" key="checked.exception.class.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.error.handling" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.errorhandling.CheckedExceptionClassInspection"/>
- <localInspection language="JAVA" shortName="ContinueOrBreakFromFinallyBlock" bundle="com.siyeh.InspectionGadgetsBundle"
- key="continue.or.break.from.finally.block.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.error.handling" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.errorhandling.ContinueOrBreakFromFinallyBlockInspection"/>
- <localInspection language="JAVA" shortName="EmptyCatchBlock" bundle="com.siyeh.InspectionGadgetsBundle" key="empty.catch.block.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.error.handling" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.errorhandling.EmptyCatchBlockInspection"/>
- <localInspection language="JAVA" shortName="EmptyFinallyBlock" bundle="com.siyeh.InspectionGadgetsBundle" key="empty.finally.block.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.error.handling" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.errorhandling.EmptyFinallyBlockInspection"/>
- <localInspection language="JAVA" shortName="EmptyTryBlock" bundle="com.siyeh.InspectionGadgetsBundle" key="empty.try.block.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.error.handling" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.errorhandling.EmptyTryBlockInspection"/>
- <localInspection language="JAVA" suppressId="ErrorNotRethrown" shortName="ErrorRethrown" bundle="com.siyeh.InspectionGadgetsBundle"
- key="error.rethrown.display.name" groupBundle="messages.InspectionsBundle" groupKey="group.names.error.handling"
- enabledByDefault="false" level="WARNING" implementationClass="com.siyeh.ig.errorhandling.ErrorRethrownInspection"/>
- <localInspection language="JAVA" suppressId="ThrowInsideCatchBlockWhichIgnoresCaughtException" shortName="ExceptionFromCatchWhichDoesntWrap"
- bundle="com.siyeh.InspectionGadgetsBundle" key="exception.from.catch.which.doesnt.wrap.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.error.handling" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.errorhandling.ExceptionFromCatchWhichDoesntWrapInspection"/>
- <localInspection language="JAVA" suppressId="finally" shortName="FinallyBlockCannotCompleteNormally" bundle="com.siyeh.InspectionGadgetsBundle"
- key="finally.block.cannot.complete.normally.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.error.handling" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.errorhandling.FinallyBlockCannotCompleteNormallyInspection"/>
- <localInspection language="JAVA" shortName="InstanceofCatchParameter" bundle="com.siyeh.InspectionGadgetsBundle"
- key="instanceof.catch.parameter.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.error.handling" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.errorhandling.InstanceofCatchParameterInspection"/>
- <localInspection language="JAVA" shortName="NestedTryStatement" bundle="com.siyeh.InspectionGadgetsBundle" key="nested.try.statement.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.error.handling" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.errorhandling.NestedTryStatementInspection"/>
- <localInspection language="JAVA" shortName="NonFinalFieldOfException" bundle="com.siyeh.InspectionGadgetsBundle"
- key="non.final.field.of.exception.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.error.handling" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.errorhandling.NonFinalFieldOfExceptionInspection"/>
- <localInspection language="JAVA" suppressId="ReturnInsideFinallyBlock" shortName="ReturnFromFinallyBlock" bundle="com.siyeh.InspectionGadgetsBundle"
- key="return.from.finally.block.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.error.handling" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.errorhandling.ReturnFromFinallyBlockInspection"/>
- <localInspection language="JAVA" suppressId="ThreadDeathNotRethrown" shortName="ThreadDeathRethrown" bundle="com.siyeh.InspectionGadgetsBundle"
- key="thread.death.rethrown.display.name" groupBundle="messages.InspectionsBundle" groupKey="group.names.error.handling"
- enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.errorhandling.ThreadDeathRethrownInspection"/>
- <localInspection language="JAVA" shortName="ThrowCaughtLocally" bundle="com.siyeh.InspectionGadgetsBundle" key="throw.caught.locally.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.error.handling" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.errorhandling.ThrowCaughtLocallyInspection"/>
- <localInspection language="JAVA" shortName="ThrowFromFinallyBlock" bundle="com.siyeh.InspectionGadgetsBundle"
- key="throw.from.finally.block.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.error.handling" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.errorhandling.ThrowFromFinallyBlockInspection"/>
- <localInspection language="JAVA" shortName="NullThrown" bundle="com.siyeh.InspectionGadgetsBundle" key="null.thrown.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.error.handling" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.errorhandling.NullThrownInspection"/>
- <localInspection language="JAVA" suppressId="OverlyBroadCatchBlock" shortName="TooBroadCatch" bundle="com.siyeh.InspectionGadgetsBundle"
- key="too.broad.catch.display.name" groupBundle="messages.InspectionsBundle" groupKey="group.names.error.handling"
- enabledByDefault="false" level="WARNING" implementationClass="com.siyeh.ig.errorhandling.TooBroadCatchInspection"/>
- <localInspection language="JAVA" suppressId="OverlyBroadThrowsClause" shortName="TooBroadThrows" bundle="com.siyeh.InspectionGadgetsBundle"
- key="overly.broad.throws.clause.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.error.handling" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.errorhandling.TooBroadThrowsInspection"/>
- <localInspection language="JAVA" shortName="UncheckedExceptionClass" bundle="com.siyeh.InspectionGadgetsBundle"
- key="unchecked.exception.class.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.error.handling" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.errorhandling.UncheckedExceptionClassInspection"/>
- <localInspection language="JAVA" shortName="UnusedCatchParameter" bundle="com.siyeh.InspectionGadgetsBundle" key="unused.catch.parameter.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.error.handling" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.errorhandling.UnusedCatchParameterInspection"/>
- <localInspection language="JAVA" shortName="NewExceptionWithoutArguments" bundle="com.siyeh.InspectionGadgetsBundle" key="new.exception.without.arguments.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.error.handling" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.errorhandling.NewExceptionWithoutArgumentsInspection"/>
- <localInspection language="JAVA" shortName="ThrowsRuntimeException" bundle="com.siyeh.InspectionGadgetsBundle" key="throws.runtime.exception.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.error.handling" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.errorhandling.ThrowsRuntimeExceptionInspection"/>
-
- <!--group.names.finalization.issues-->
- <localInspection language="JAVA" suppressId="FinalizeDoesntCallSuperFinalize" shortName="FinalizeCallsSuperFinalize"
- bundle="com.siyeh.InspectionGadgetsBundle" key="finalize.doesnt.call.super.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.finalization.issues" enabledByDefault="true"
- level="WARNING" implementationClass="com.siyeh.ig.finalization.FinalizeCallsSuperFinalizeInspection"/>
- <localInspection language="JAVA" suppressId="FinalizeDeclaration" shortName="Finalize" bundle="com.siyeh.InspectionGadgetsBundle"
- key="finalize.declaration.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.finalization.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.finalization.FinalizeInspection"/>
- <localInspection language="JAVA" shortName="FinalizeNotProtected" bundle="com.siyeh.InspectionGadgetsBundle"
- key="finalize.not.declared.protected.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.finalization.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.finalization.FinalizeNotProtectedInspection"/>
- <localInspection language="JAVA" suppressId="FinalizeCalledExplicitly" shortName="NoExplicitFinalizeCalls" bundle="com.siyeh.InspectionGadgetsBundle"
- key="finalize.called.explicitly.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.finalization.issues" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.finalization.NoExplicitFinalizeCallsInspection"/>
-
- <!--group.names.imports-->
- <localInspection language="JAVA" shortName="JavaLangImport" bundle="com.siyeh.InspectionGadgetsBundle" key="java.lang.import.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.imports" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.imports.JavaLangImportInspection"/>
- <localInspection language="JAVA" shortName="OnDemandImport" bundle="com.siyeh.InspectionGadgetsBundle" key="import.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.imports" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.imports.OnDemandImportInspection"/>
- <localInspection language="JAVA" shortName="RedundantImport" bundle="com.siyeh.InspectionGadgetsBundle" key="redundant.import.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.imports" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.imports.RedundantImportInspection"/>
- <localInspection language="JAVA" shortName="SamePackageImport" bundle="com.siyeh.InspectionGadgetsBundle" key="import.from.same.package.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.imports" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.imports.SamePackageImportInspection"/>
- <localInspection language="JAVA" shortName="SingleClassImport" bundle="com.siyeh.InspectionGadgetsBundle" key="single.class.import.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.imports" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.imports.SingleClassImportInspection"/>
- <localInspection language="JAVA" shortName="StaticImport" bundle="com.siyeh.InspectionGadgetsBundle" key="static.import.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.imports" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.imports.StaticImportInspection"/>
- <localInspection language="JAVA" shortName="UnusedImport" bundle="com.siyeh.InspectionGadgetsBundle" key="unused.import.display.name" runForWholeFile="true"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.imports" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.imports.UnusedImportInspection"/>
-
- <!--group.names.inheritance.issues-->
- <localInspection language="JAVA" shortName="AbstractClassExtendsConcreteClass" bundle="com.siyeh.InspectionGadgetsBundle"
- key="abstract.class.extends.concrete.class.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.inheritance.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.inheritance.AbstractClassExtendsConcreteClassInspection"/>
- <localInspection language="JAVA" shortName="AbstractClassNeverImplemented" bundle="com.siyeh.InspectionGadgetsBundle"
- key="abstract.class.never.implemented.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.inheritance.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.inheritance.AbstractClassNeverImplementedInspection"/>
- <localInspection language="JAVA" shortName="AbstractClassWithoutAbstractMethods" bundle="com.siyeh.InspectionGadgetsBundle"
- key="abstract.class.without.abstract.methods.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.inheritance.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.inheritance.AbstractClassWithoutAbstractMethodsInspection"/>
- <localInspection language="JAVA" shortName="AbstractMethodOverridesAbstractMethod" bundle="com.siyeh.InspectionGadgetsBundle"
- key="abstract.method.overrides.abstract.method.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.inheritance.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.inheritance.AbstractMethodOverridesAbstractMethodInspection"/>
- <localInspection language="JAVA" shortName="AbstractMethodOverridesConcreteMethod" bundle="com.siyeh.InspectionGadgetsBundle"
- key="abstract.method.overrides.concrete.method.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.inheritance.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.inheritance.AbstractMethodOverridesConcreteMethodInspection"/>
- <localInspection language="JAVA" shortName="AbstractMethodWithMissingImplementations" bundle="com.siyeh.InspectionGadgetsBundle"
- key="abstract.method.with.missing.implementations.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.inheritance.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.inheritance.AbstractMethodWithMissingImplementationsInspection"/>
- <localInspection language="JAVA" suppressId="ClassExplicitlyAnnotation" shortName="ExtendsAnnotation" bundle="com.siyeh.InspectionGadgetsBundle"
- key="extends.annotation.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.inheritance.issues" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.inheritance.ExtendsAnnotationInspection"/>
- <localInspection language="JAVA" suppressId="ClassExtendsConcreteCollection" shortName="ExtendsConcreteCollection"
- bundle="com.siyeh.InspectionGadgetsBundle" key="extends.concrete.collection.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.inheritance.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.inheritance.ExtendsConcreteCollectionInspection"/>
- <localInspection language="JAVA" shortName="ExtendsUtilityClass" bundle="com.siyeh.InspectionGadgetsBundle"
- key="class.extends.utility.class.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.inheritance.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.inheritance.ExtendsUtilityClassInspection"/>
- <localInspection language="JAVA" shortName="InterfaceNeverImplemented" bundle="com.siyeh.InspectionGadgetsBundle"
- key="interface.never.implemented.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.inheritance.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.inheritance.InterfaceNeverImplementedInspection"/>
- <localInspection language="JAVA" suppressId="ConstructorNotProtectedInAbstractClass" shortName="NonProtectedConstructorInAbstractClass"
- bundle="com.siyeh.InspectionGadgetsBundle" key="non.protected.constructor.in.abstract.class.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.inheritance.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.inheritance.NonProtectedConstructorInAbstractClassInspection"/>
- <localInspection language="JAVA" shortName="RedundantMethodOverride" bundle="com.siyeh.InspectionGadgetsBundle"
- key="redundant.method.override.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.inheritance.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.inheritance.RedundantMethodOverrideInspection"/>
- <localInspection language="JAVA" shortName="RefusedBequest" bundle="com.siyeh.InspectionGadgetsBundle" key="refused.bequest.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.inheritance.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.inheritance.RefusedBequestInspection"/>
- <localInspection language="JAVA" shortName="StaticInheritance" bundle="com.siyeh.InspectionGadgetsBundle" key="static.inheritance.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.inheritance.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.inheritance.StaticInheritanceInspection"/>
- <localInspection language="JAVA" shortName="TypeParameterExtendsFinalClass" bundle="com.siyeh.InspectionGadgetsBundle"
- key="type.parameter.extends.final.class.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.inheritance.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.inheritance.TypeParameterExtendsFinalClassInspection"/>
-
- <!--group.names.initialization.issues-->
- <localInspection language="JAVA" shortName="AbstractMethodCallInConstructor" bundle="com.siyeh.InspectionGadgetsBundle"
- key="abstract.method.call.in.constructor.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.initialization.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.initialization.AbstractMethodCallInConstructorInspection"/>
- <localInspection language="JAVA" suppressId="InstanceVariableMayNotBeInitialized" shortName="InstanceVariableInitialization"
- bundle="com.siyeh.InspectionGadgetsBundle" key="instance.variable.may.not.be.initialized.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.initialization.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.initialization.InstanceVariableInitializationInspection"/>
- <localInspection language="JAVA" suppressId="InstanceVariableUsedBeforeInitialized" shortName="InstanceVariableUninitializedUse"
- bundle="com.siyeh.InspectionGadgetsBundle" key="instance.variable.used.before.initialized.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.initialization.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.initialization.InstanceVariableUninitializedUseInspection"/>
- <localInspection language="JAVA" shortName="NonFinalStaticVariableUsedInClassInitialization" bundle="com.siyeh.InspectionGadgetsBundle"
- key="non.final.static.variable.initialization.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.initialization.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.initialization.NonFinalStaticVariableUsedInClassInitializationInspection"/>
- <localInspection language="JAVA" shortName="NonThreadSafeLazyInitialization" bundle="com.siyeh.InspectionGadgetsBundle"
- key="non.thread.safe.lazy.initialization.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.initialization.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.initialization.NonThreadSafeLazyInitializationInspection"/>
- <localInspection language="JAVA" shortName="OverridableMethodCallDuringObjectConstruction" bundle="com.siyeh.InspectionGadgetsBundle"
- key="overridable.method.call.in.constructor.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.initialization.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.initialization.OverridableMethodCallDuringObjectConstructionInspection"/>
- <localInspection language="JAVA" shortName="OverriddenMethodCallDuringObjectConstruction" bundle="com.siyeh.InspectionGadgetsBundle"
- key="overridden.method.call.in.constructor.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.initialization.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.initialization.OverriddenMethodCallDuringObjectConstructionInspection"/>
- <localInspection language="JAVA" suppressId="StaticVariableMayNotBeInitialized" shortName="StaticVariableInitialization"
- bundle="com.siyeh.InspectionGadgetsBundle" key="static.variable.may.not.be.initialized.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.initialization.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.initialization.StaticVariableInitializationInspection"/>
- <localInspection language="JAVA" suppressId="StaticVariableUsedBeforeInitialization" shortName="StaticVariableUninitializedUse"
- bundle="com.siyeh.InspectionGadgetsBundle" key="static.variable.used.before.initialization.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.initialization.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.initialization.StaticVariableUninitializedUseInspection"/>
- <localInspection language="JAVA" suppressId="ThisEscapedInObjectConstruction" shortName="ThisEscapedInConstructor"
- bundle="com.siyeh.InspectionGadgetsBundle" key="this.reference.escaped.in.construction.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.initialization.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.initialization.ThisEscapedInConstructorInspection"/>
-
- <!--group.names.internationalization.issues-->
- <localInspection language="JAVA" shortName="CharacterComparison" bundle="com.siyeh.InspectionGadgetsBundle" key="character.comparison.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.internationalization.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.internationalization.CharacterComparisonInspection"/>
- <localInspection language="JAVA" suppressId="CallToDateToString" shortName="DateToString" bundle="com.siyeh.InspectionGadgetsBundle"
- key="call.to.date.tostring.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.internationalization.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.internationalization.DateToStringInspection"/>
- <localInspection language="JAVA" shortName="MagicCharacter" bundle="com.siyeh.InspectionGadgetsBundle" key="magic.character.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.internationalization.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.internationalization.MagicCharacterInspection"/>
- <localInspection language="JAVA" suppressId="CallToNumericToString" shortName="NumericToString" bundle="com.siyeh.InspectionGadgetsBundle"
- key="call.to.numeric.tostring.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.internationalization.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.internationalization.NumericToStringInspection"/>
- <localInspection language="JAVA" shortName="SimpleDateFormatWithoutLocale" bundle="com.siyeh.InspectionGadgetsBundle"
- key="instantiating.simpledateformat.without.locale.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.internationalization.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.internationalization.SimpleDateFormatWithoutLocaleInspection"/>
- <localInspection language="JAVA" suppressId="CallToStringCompareTo" shortName="StringCompareTo" bundle="com.siyeh.InspectionGadgetsBundle"
- key="string.compareto.call.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.internationalization.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.internationalization.StringCompareToInspection"/>
- <localInspection language="JAVA" shortName="StringConcatenation" bundle="com.siyeh.InspectionGadgetsBundle" key="string.concatenation.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.internationalization.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.internationalization.StringConcatenationInspection"/>
- <localInspection language="JAVA" suppressId="CallToStringEqualsIgnoreCase" shortName="StringEqualsIgnoreCase" bundle="com.siyeh.InspectionGadgetsBundle"
- key="string.equalsignorecase.call.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.internationalization.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.internationalization.StringEqualsIgnoreCaseInspection"/>
- <localInspection language="JAVA" suppressId="CallToStringEquals" shortName="StringEquals" bundle="com.siyeh.InspectionGadgetsBundle"
- key="string.equals.call.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.internationalization.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.internationalization.StringEqualsInspection"/>
- <localInspection language="JAVA" suppressId="StringToUpperCaseOrToLowerCaseWithoutLocale" shortName="StringToUpperWithoutLocale"
- bundle="com.siyeh.InspectionGadgetsBundle" key="string.touppercase.tolowercase.without.locale.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.internationalization.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.internationalization.StringToUpperWithoutLocaleInspection"/>
- <localInspection language="JAVA" suppressId="UseOfStringTokenizer" shortName="StringTokenizer" bundle="com.siyeh.InspectionGadgetsBundle"
- key="use.stringtokenizer.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.internationalization.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.internationalization.StringTokenizerInspection"/>
- <localInspection language="JAVA" suppressId="CallToTimeToString" shortName="TimeToString" bundle="com.siyeh.InspectionGadgetsBundle"
- key="time.tostring.call.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.internationalization.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.internationalization.TimeToStringInspection"/>
- <localInspection language="JAVA" shortName="AbsoluteAlignmentInUserInterface" bundle="com.siyeh.InspectionGadgetsBundle"
- key="absolute.alignment.in.user.interface.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.internationalization.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.internationalization.AbsoluteAlignmentInUserInterfaceInspection"/>
-
- <!--group.names.j2me.issues-->
- <localInspection language="JAVA" shortName="AbstractClassWithOnlyOneDirectInheritor" bundle="com.siyeh.InspectionGadgetsBundle"
- key="abstract.class.with.only.one.direct.inheritor.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.j2me.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.j2me.AbstractClassWithOnlyOneDirectInheritorInspection"/>
- <localInspection language="JAVA" shortName="AnonymousInnerClassMayBeStatic" bundle="com.siyeh.InspectionGadgetsBundle"
- key="anonymous.inner.may.be.named.static.inner.class.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.j2me.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.j2me.AnonymousInnerClassMayBeStaticInspection"/>
- <localInspection language="JAVA" shortName="ArrayLengthInLoopCondition" bundle="com.siyeh.InspectionGadgetsBundle"
- key="array.length.in.loop.condition.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.j2me.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.j2me.ArrayLengthInLoopConditionInspection"/>
- <localInspection language="JAVA" shortName="CheckForOutOfMemoryOnLargeArrayAllocation" bundle="com.siyeh.InspectionGadgetsBundle"
- key="large.array.allocation.no.outofmemoryerror.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.j2me.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.j2me.CheckForOutOfMemoryOnLargeArrayAllocationInspection"/>
- <localInspection language="JAVA" suppressId="ConnectionOpenedButNotSafelyClosed" shortName="ConnectionResource"
- bundle="com.siyeh.InspectionGadgetsBundle" key="connection.opened.not.safely.closed.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.j2me.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.j2me.ConnectionResourceInspection"/>
- <localInspection language="JAVA" suppressId="FieldRepeatedlyAccessedInMethod" shortName="FieldRepeatedlyAccessed"
- bundle="com.siyeh.InspectionGadgetsBundle" key="field.repeatedly.accessed.in.method.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.j2me.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.j2me.FieldRepeatedlyAccessedInspection"/>
- <localInspection language="JAVA" shortName="InterfaceWithOnlyOneDirectInheritor" bundle="com.siyeh.InspectionGadgetsBundle"
- key="interface.one.inheritor.display.name" groupBundle="messages.InspectionsBundle" groupKey="group.names.j2me.issues"
- enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.j2me.InterfaceWithOnlyOneDirectInheritorInspection"/>
- <localInspection language="JAVA" shortName="MethodCallInLoopCondition" bundle="com.siyeh.InspectionGadgetsBundle"
- key="method.call.in.loop.condition.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.j2me.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.j2me.MethodCallInLoopConditionInspection"/>
- <localInspection language="JAVA" shortName="MultiplyOrDivideByPowerOfTwo" bundle="com.siyeh.InspectionGadgetsBundle"
- key="multiply.or.divide.by.power.of.two.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.j2me.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.j2me.MultiplyOrDivideByPowerOfTwoInspection"/>
- <localInspection language="JAVA" shortName="OverlyLargePrimitiveArrayInitializer" bundle="com.siyeh.InspectionGadgetsBundle"
- key="large.initializer.primitive.type.array.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.j2me.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.j2me.OverlyLargePrimitiveArrayInitializerInspection"/>
- <localInspection language="JAVA" shortName="PrivateMemberAccessBetweenOuterAndInnerClass" bundle="com.siyeh.InspectionGadgetsBundle"
- key="private.member.access.between.outer.and.inner.classes.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.j2me.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.j2me.PrivateMemberAccessBetweenOuterAndInnerClassInspection"/>
- <localInspection language="JAVA" suppressId="RecordStoreOpenedButNotSafelyClosed" shortName="RecordStoreResource"
- bundle="com.siyeh.InspectionGadgetsBundle" key="recordstore.opened.not.safely.closed.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.j2me.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.j2me.RecordStoreResourceInspection"/>
- <localInspection language="JAVA" shortName="SimplifiableIfStatement" bundle="com.siyeh.InspectionGadgetsBundle"
- key="simplifiable.if.statement.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.j2me.issues" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.j2me.SimplifiableIfStatementInspection"/>
- <localInspection language="JAVA" shortName="SingleCharacterStartsWith" bundle="com.siyeh.InspectionGadgetsBundle"
- key="single.character.startswith.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.j2me.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.j2me.SingleCharacterStartsWithInspection"/>
-
- <!--group.names.javabeans.issues-->
- <localInspection language="JAVA" shortName="ClassWithoutConstructor" bundle="com.siyeh.InspectionGadgetsBundle"
- key="class.without.constructor.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.javabeans.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.javabeans.ClassWithoutConstructorInspection"/>
- <localInspection language="JAVA" shortName="ClassWithoutNoArgConstructor" bundle="com.siyeh.InspectionGadgetsBundle"
- key="class.without.no.arg.constructor.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.javabeans.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.javabeans.ClassWithoutNoArgConstructorInspection"/>
- <localInspection language="JAVA" shortName="FieldHasSetterButNoGetter" bundle="com.siyeh.InspectionGadgetsBundle"
- key="field.has.setter.but.no.getter.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.javabeans.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.javabeans.FieldHasSetterButNoGetterInspection"/>
-
- <!--group.names.javadoc.issues-->
- <localInspection language="JAVA" shortName="HtmlTagCanBeJavadocTag" bundle="com.siyeh.InspectionGadgetsBundle"
- key="html.tag.can.be.javadoc.tag.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.javadoc.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.javadoc.HtmlTagCanBeJavadocTagInspection"/>
- <localInspection language="XML" shortName="PackageDotHtmlMayBePackageInfo" bundle="com.siyeh.InspectionGadgetsBundle"
- key="package.dot.html.may.be.package.info.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.javadoc.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.javadoc.PackageDotHtmlMayBePackageInfoInspection"/>
- <localInspection language="JAVA" shortName="UnnecessaryJavaDocLink" bundle="com.siyeh.InspectionGadgetsBundle"
- key="unnecessary.javadoc.link.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.javadoc.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.javadoc.UnnecessaryJavaDocLinkInspection"/>
- <localInspection language="JAVA" shortName="UnnecessaryInheritDoc" bundle="com.siyeh.InspectionGadgetsBundle" key="unnecessary.inherit.doc.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.javadoc.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.javadoc.UnnecessaryInheritDocInspection"/>
-
- <!--group.names.language.level.specific.issues.and.migration.aids-->
- <localInspection language="JAVA" shortName="CollectionsFieldAccessReplaceableByMethodCall" bundle="com.siyeh.InspectionGadgetsBundle"
- key="collections.field.access.replaceable.by.method.call.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.language.level.specific.issues.and.migration.aids" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.migration.CollectionsFieldAccessReplaceableByMethodCallInspection"/>
- <localInspection language="JAVA" shortName="EnumerationCanBeIteration" bundle="com.siyeh.InspectionGadgetsBundle"
- key="enumeration.can.be.iteration.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.language.level.specific.issues.and.migration.aids" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.migration.EnumerationCanBeIterationInspection"/>
- <localInspection language="JAVA" suppressId="ForLoopReplaceableByForEach" shortName="ForCanBeForeach" bundle="com.siyeh.InspectionGadgetsBundle"
- key="for.can.be.foreach.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.language.level.specific.issues.and.migration.aids" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.migration.ForCanBeForeachInspection"/>
- <localInspection language="JAVA" shortName="IfCanBeSwitch" bundle="com.siyeh.InspectionGadgetsBundle" key="if.can.be.switch.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.language.level.specific.issues.and.migration.aids"
- enabledByDefault="true" level="WARNING" implementationClass="com.siyeh.ig.migration.IfCanBeSwitchInspection"/>
- <localInspection language="JAVA" shortName="IndexOfReplaceableByContains" bundle="com.siyeh.InspectionGadgetsBundle"
- key="indexof.replaceable.by.contains.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.language.level.specific.issues.and.migration.aids" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.migration.IndexOfReplaceableByContainsInspection"/>
- <localInspection language="JAVA" shortName="MethodCanBeVariableArityMethod" bundle="com.siyeh.InspectionGadgetsBundle"
- key="method.can.be.variable.arity.method.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.language.level.specific.issues.and.migration.aids" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.migration.MethodCanBeVariableArityMethodInspection"/>
- <localInspection language="JAVA" suppressId="rawtypes" alternativeId="RawUseOfParameterized" shortName="RawUseOfParameterizedType" bundle="com.siyeh.InspectionGadgetsBundle"
- key="raw.use.of.parameterized.type.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.language.level.specific.issues.and.migration.aids" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.migration.RawUseOfParameterizedTypeInspection"/>
- <localInspection language="JAVA" suppressId="StringBufferMayBeStringBuilder" shortName="StringBufferReplaceableByStringBuilder"
- bundle="com.siyeh.InspectionGadgetsBundle" key="string.buffer.replaceable.by.string.builder.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.language.level.specific.issues.and.migration.aids"
- enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.migration.StringBufferReplaceableByStringBuilderInspection"/>
- <localInspection language="JAVA" shortName="TryFinallyCanBeTryWithResources" bundle="com.siyeh.InspectionGadgetsBundle"
- key="try.finally.can.be.try.with.resources.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.language.level.specific.issues.and.migration.aids" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.migration.TryFinallyCanBeTryWithResourcesInspection"/>
- <localInspection language="JAVA" shortName="TryWithIdenticalCatches" bundle="com.siyeh.InspectionGadgetsBundle"
- key="try.with.identical.catches.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.language.level.specific.issues.and.migration.aids" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.migration.TryWithIdenticalCatchesInspection"/>
- <localInspection language="JAVA" shortName="UnnecessaryBoxing" bundle="com.siyeh.InspectionGadgetsBundle" key="unnecessary.boxing.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.language.level.specific.issues.and.migration.aids"
- enabledByDefault="true" level="WARNING" implementationClass="com.siyeh.ig.migration.UnnecessaryBoxingInspection"/>
- <localInspection language="JAVA" shortName="UnnecessaryUnboxing" bundle="com.siyeh.InspectionGadgetsBundle" key="unnecessary.unboxing.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.language.level.specific.issues.and.migration.aids"
- enabledByDefault="true" level="WARNING" implementationClass="com.siyeh.ig.migration.UnnecessaryUnboxingInspection"/>
- <localInspection language="JAVA" suppressId="WhileLoopReplaceableByForEach" shortName="WhileCanBeForeach" bundle="com.siyeh.InspectionGadgetsBundle"
- key="while.can.be.foreach.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.language.level.specific.issues.and.migration.aids" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.migration.WhileCanBeForeachInspection"/>
-
- <!--group.names.java.language.level.issues-->
- <localInspection language="JAVA" shortName="AnnotationClass" bundle="com.siyeh.InspectionGadgetsBundle" key="annotation.class.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.java.language.level.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.jdk.AnnotationClassInspection"/>
- <localInspection language="JAVA" shortName="Annotation" bundle="com.siyeh.InspectionGadgetsBundle" key="annotation.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.java.language.level.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.jdk.AnnotationInspection"/>
- <localInspection language="JAVA" suppressId="AssertAsIdentifier" shortName="AssertAsName" bundle="com.siyeh.InspectionGadgetsBundle"
- key="use.assert.as.identifier.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.java.language.level.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.jdk.AssertAsNameInspection"/>
- <localInspection language="JAVA" shortName="AssertStatement" bundle="com.siyeh.InspectionGadgetsBundle" key="assert.statement.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.java.language.level.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.jdk.AssertStatementInspection"/>
- <localInspection language="JAVA" alternativeId="boxing" shortName="AutoBoxing" bundle="com.siyeh.InspectionGadgetsBundle" key="auto.boxing.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.java.language.level.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.jdk.AutoBoxingInspection"/>
- <localInspection language="JAVA" shortName="AutoUnboxing" bundle="com.siyeh.InspectionGadgetsBundle" key="auto.unboxing.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.java.language.level.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.jdk.AutoUnboxingInspection"/>
- <localInspection language="JAVA" suppressId="EnumAsIdentifier" shortName="EnumAsName" bundle="com.siyeh.InspectionGadgetsBundle"
- key="use.enum.as.identifier.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.java.language.level.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.jdk.EnumAsNameInspection"/>
- <localInspection language="JAVA" shortName="EnumClass" bundle="com.siyeh.InspectionGadgetsBundle" key="enumerated.class.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.java.language.level.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.jdk.EnumClassInspection"/>
- <localInspection language="JAVA" shortName="ForeachStatement" bundle="com.siyeh.InspectionGadgetsBundle" key="extended.for.statement.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.java.language.level.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.jdk.ForeachStatementInspection"/>
- <localInspection language="JAVA" suppressId="VariableArgumentMethod" shortName="VarargParameter" bundle="com.siyeh.InspectionGadgetsBundle"
- key="variable.argument.method.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.java.language.level.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.jdk.VarargParameterInspection"/>
-
- <!--group.names.junit.issues-->
- <localInspection language="JAVA" shortName="AssertEqualsBetweenInconvertibleTypes" bundle="com.siyeh.InspectionGadgetsBundle"
- key="assertequals.between.inconvertible.types.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.junit.issues" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.junit.AssertEqualsBetweenInconvertibleTypesInspection"/>
- <localInspection language="JAVA" shortName="AssertEqualsMayBeAssertSame" bundle="com.siyeh.InspectionGadgetsBundle"
- key="assertequals.may.be.assertsame.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.junit.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.junit.AssertEqualsMayBeAssertSameInspection"/>
- <localInspection language="JAVA" shortName="AssertEqualsCalledOnArray" bundle="com.siyeh.InspectionGadgetsBundle"
- key="assertequals.called.on.arrays.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.junit.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.junit.AssertEqualsCalledOnArrayInspection"/>
- <localInspection language="JAVA" shortName="JUnitRule" bundle="com.siyeh.InspectionGadgetsBundle"
- key="junit.rule.display.name" implementationClass="com.siyeh.ig.junit.JUnitRuleInspection"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.junit.issues" enabledByDefault="false" level="WARNING"/>
- <localInspection language="JAVA" shortName="JUnitDatapoint" bundle="com.siyeh.InspectionGadgetsBundle"
- key="junit.datapoint.display.name" implementationClass="com.siyeh.ig.junit.JUnitDatapointInspection"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.junit.issues" enabledByDefault="false" level="WARNING"/>
- <localInspection language="JAVA" suppressId="MessageMissingOnJUnitAssertion" shortName="AssertsWithoutMessages"
- bundle="com.siyeh.InspectionGadgetsBundle" key="asserts.without.messages.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.junit.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.junit.AssertsWithoutMessagesInspection"/>
- <localInspection language="JAVA" suppressId="BeforeOrAfterWithIncorrectSignature" shortName="BeforeClassOrAfterClassIsPublicStaticVoidNoArg"
- bundle="com.siyeh.InspectionGadgetsBundle" key="before.class.or.after.class.is.public.static.void.no.arg.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.junit.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.junit.BeforeClassOrAfterClassIsPublicStaticVoidNoArgInspection"/>
- <localInspection language="JAVA" suppressId="BeforeOrAfterWithIncorrectSignature" shortName="BeforeOrAfterIsPublicVoidNoArg"
- bundle="com.siyeh.InspectionGadgetsBundle" key="before.or.after.is.public.void.no.arg.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.junit.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.junit.BeforeOrAfterIsPublicVoidNoArgInspection"/>
- <localInspection language="JAVA" shortName="ExpectedExceptionNeverThrown" bundle="com.siyeh.InspectionGadgetsBundle"
- key="expected.exception.never.thrown.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.junit.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.junit.ExpectedExceptionNeverThrownInspection"/>
- <localInspection language="JAVA" shortName="ParameterizedParametersStaticCollection" displayName="@RunWith(Parameterized.class) without data provider"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.junit.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.junit.ParameterizedParametersStaticCollectionInspection"/>
- <localInspection language="JAVA" shortName="ConstantJUnitAssertArgument" bundle="com.siyeh.InspectionGadgetsBundle"
- key="constant.junit.assert.argument.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.junit.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.junit.ConstantJUnitAssertArgumentInspection"/>
- <localInspection language="JAVA" shortName="IgnoredJUnitTest" bundle="com.siyeh.InspectionGadgetsBundle" key="ignored.junit.test.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.junit.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.junit.IgnoredJUnitTestInspection"/>
- <localInspection language="JAVA" shortName="JUnit3StyleTestMethodInJUnit4Class" bundle="com.siyeh.InspectionGadgetsBundle"
- key="junit3.style.test.method.in.junit4.class.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.junit.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.junit.JUnit3StyleTestMethodInJUnit4ClassInspection"/>
- <localInspection language="JAVA" shortName="JUnit4AnnotatedMethodInJUnit3TestCase" bundle="com.siyeh.InspectionGadgetsBundle"
- key="junit4.test.method.in.class.extending.junit3.testcase.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.junit.issues" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.junit.JUnit4AnnotatedMethodInJUnit3TestCaseInspection"/>
- <localInspection shortName="JUnitAbstractTestClassNamingConvention" bundle="com.siyeh.InspectionGadgetsBundle"
- key="junit.abstract.test.class.naming.convention.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.junit.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.junit.JUnitAbstractTestClassNamingConventionInspection"/>
- <localInspection shortName="JUnitTestClassNamingConvention" bundle="com.siyeh.InspectionGadgetsBundle"
- key="junit.test.class.naming.convention.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.junit.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.junit.JUnitTestClassNamingConventionInspection"/>
- <localInspection language="JAVA" shortName="MisspelledSetUp" bundle="com.siyeh.InspectionGadgetsBundle" key="misspelled.set.up.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.junit.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.junit.MisspelledSetUpInspection"/>
- <localInspection language="JAVA" shortName="MisspelledTearDown" bundle="com.siyeh.InspectionGadgetsBundle" key="misspelled.tear.down.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.junit.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.junit.MisspelledTearDownInspection"/>
- <localInspection language="JAVA" suppressId="MisorderedAssertEqualsArguments" alternativeId="MisorderedAssertEqualsArguments" shortName="MisorderedAssertEqualsParameters"
- bundle="com.siyeh.InspectionGadgetsBundle" key="misordered.assert.equals.parameters.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.junit.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.junit.MisorderedAssertEqualsParametersInspection"/>
- <localInspection language="JAVA" shortName="MultipleExceptionsDeclaredOnTestMethod" bundle="com.siyeh.InspectionGadgetsBundle"
- key="multiple.exceptions.declared.on.test.method.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.junit.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.junit.MultipleExceptionsDeclaredOnTestMethodInspection"/>
- <localInspection language="JAVA" suppressId="JUnitTestCaseWithNonTrivialConstructors" shortName="TestCaseWithConstructor"
- bundle="com.siyeh.InspectionGadgetsBundle" key="test.case.with.constructor.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.junit.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.junit.TestCaseWithConstructorInspection"/>
- <localInspection language="JAVA" suppressId="SetUpDoesntCallSuperSetUp" shortName="SetupCallsSuperSetup" bundle="com.siyeh.InspectionGadgetsBundle"
- key="setup.calls.super.setup.display.name" groupBundle="messages.InspectionsBundle" groupKey="group.names.junit.issues"
- enabledByDefault="false" level="WARNING" implementationClass="com.siyeh.ig.junit.SetupCallsSuperSetupInspection"/>
- <localInspection language="JAVA" suppressId="SetUpWithIncorrectSignature" shortName="SetupIsPublicVoidNoArg" bundle="com.siyeh.InspectionGadgetsBundle"
- key="setup.is.public.void.no.arg.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.junit.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.junit.SetupIsPublicVoidNoArgInspection"/>
- <localInspection language="JAVA" shortName="SimplifiableJUnitAssertion" bundle="com.siyeh.InspectionGadgetsBundle"
- key="simplifiable.junit.assertion.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.junit.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.junit.SimplifiableJUnitAssertionInspection"/>
- <localInspection language="JAVA" suppressId="SuiteNotDeclaredStatic" shortName="StaticSuite" bundle="com.siyeh.InspectionGadgetsBundle"
- key="static.suite.display.name" groupBundle="messages.InspectionsBundle" groupKey="group.names.junit.issues"
- enabledByDefault="false" level="WARNING" implementationClass="com.siyeh.ig.junit.StaticSuiteInspection"/>
- <localInspection language="JAVA" suppressId="JUnitTestCaseInProductSource" shortName="TestCaseInProductCode" bundle="com.siyeh.InspectionGadgetsBundle"
- key="test.case.in.product.code.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.junit.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.junit.TestCaseInProductCodeInspection"/>
- <localInspection language="JAVA" suppressId="JUnitTestCaseWithNoTests" shortName="TestCaseWithNoTestMethods" bundle="com.siyeh.InspectionGadgetsBundle"
- key="test.case.with.no.test.methods.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.junit.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.junit.TestCaseWithNoTestMethodsInspection"/>
- <localInspection language="JAVA" suppressId="TearDownDoesntCallSuperTearDown" shortName="TeardownCallsSuperTeardown"
- bundle="com.siyeh.InspectionGadgetsBundle" key="teardown.calls.super.teardown.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.junit.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.junit.TeardownCallsSuperTeardownInspection"/>
- <localInspection language="JAVA" suppressId="TearDownWithIncorrectSignature" shortName="TeardownIsPublicVoidNoArg"
- bundle="com.siyeh.InspectionGadgetsBundle" key="teardown.is.public.void.no.arg.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.junit.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.junit.TeardownIsPublicVoidNoArgInspection"/>
- <localInspection language="JAVA" suppressId="JUnitTestMethodInProductSource" shortName="TestMethodInProductCode"
- bundle="com.siyeh.InspectionGadgetsBundle" key="test.method.in.product.code.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.junit.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.junit.TestMethodInProductCodeInspection"/>
- <localInspection language="JAVA" suppressId="TestMethodWithIncorrectSignature" shortName="TestMethodIsPublicVoidNoArg"
- bundle="com.siyeh.InspectionGadgetsBundle" key="test.method.is.public.void.no.arg.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.junit.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.junit.TestMethodIsPublicVoidNoArgInspection"/>
- <localInspection language="JAVA" suppressId="JUnitTestMethodWithNoAssertions" shortName="TestMethodWithoutAssertion"
- bundle="com.siyeh.InspectionGadgetsBundle" key="test.method.without.assertion.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.junit.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.junit.TestMethodWithoutAssertionInspection"/>
- <localInspection language="JAVA" suppressId="UnconstructableJUnitTestCase" shortName="UnconstructableTestCase"
- bundle="com.siyeh.InspectionGadgetsBundle" key="unconstructable.test.case.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.junit.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.junit.UnconstructableTestCaseInspection"/>
- <localInspection language="JAVA" shortName="UseOfObsoleteAssert" bundle="com.siyeh.InspectionGadgetsBundle" key="usage.of.obsolete.assert.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.junit.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.junit.UseOfObsoleteAssertInspection"/>
-
- <!--group.names.logging.issues-->
- <localInspection language="JAVA" shortName="ClassWithMultipleLoggers" bundle="com.siyeh.InspectionGadgetsBundle" key="multiple.loggers.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.logging.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.logging.ClassWithMultipleLoggersInspection"/>
- <localInspection language="JAVA" shortName="ClassWithoutLogger" bundle="com.siyeh.InspectionGadgetsBundle" key="no.logger.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.logging.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.logging.ClassWithoutLoggerInspection"/>
- <localInspection language="JAVA" shortName="LoggingConditionDisagreesWithLogStatement" bundle="com.siyeh.InspectionGadgetsBundle"
- key="logging.condition.disagrees.with.log.statement.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.logging.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.logging.LoggingConditionDisagreesWithLogStatementInspection"/>
- <localInspection language="JAVA" shortName="LoggerInitializedWithForeignClass" bundle="com.siyeh.InspectionGadgetsBundle"
- key="logger.initialized.with.foreign.class.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.logging.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.logging.LoggerInitializedWithForeignClassInspection"/>
- <localInspection language="JAVA" shortName="LogStatementGuardedByLogCondition" bundle="com.siyeh.InspectionGadgetsBundle"
- key="log.statement.guarded.by.log.condition.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.logging.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.logging.LogStatementGuardedByLogConditionInspection"/>
- <localInspection language="JAVA" suppressId="NonConstantLogger" shortName="NonStaticFinalLogger" bundle="com.siyeh.InspectionGadgetsBundle"
- key="non.constant.logger.display.name" groupBundle="messages.InspectionsBundle" groupKey="group.names.logging.issues"
- enabledByDefault="false" level="WARNING" implementationClass="com.siyeh.ig.logging.NonStaticFinalLoggerInspection"/>
- <localInspection language="JAVA" shortName="PlaceholderCountMatchesArgumentCount" bundle="com.siyeh.InspectionGadgetsBundle"
- key="placeholder.count.matches.argument.count.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.logging.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.logging.PlaceholderCountMatchesArgumentCountInspection"/>
- <localInspection language="JAVA" shortName="PublicMethodWithoutLogging" bundle="com.siyeh.InspectionGadgetsBundle"
- key="public.method.without.logging.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.logging.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.logging.PublicMethodWithoutLoggingInspection"/>
- <localInspection language="JAVA" shortName="StringConcatenationArgumentToLogCall" bundle="com.siyeh.InspectionGadgetsBundle"
- key="string.concatenation.argument.to.log.call.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.logging.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.logging.StringConcatenationArgumentToLogCallInspection"/>
-
- <!--group.names.code.maturity.issues-->
- <localInspection language="JAVA" shortName="SuppressionAnnotation" bundle="com.siyeh.InspectionGadgetsBundle"
- key="inspection.suppression.annotation.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.code.maturity.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.maturity.SuppressionAnnotationInspection"/>
- <localInspection language="JAVA" suppressId="UseOfSystemOutOrSystemErr" shortName="SystemOutErr" bundle="com.siyeh.InspectionGadgetsBundle"
- key="use.system.out.err.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.code.maturity.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.maturity.SystemOutErrInspection"/>
- <localInspection language="JAVA" suppressId="CallToPrintStackTrace" shortName="ThrowablePrintStackTrace" bundle="com.siyeh.InspectionGadgetsBundle"
- key="printstacktrace.call.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.code.maturity.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.maturity.ThrowablePrintStackTraceInspection"/>
- <localInspection language="JAVA" shortName="TodoComment" bundle="com.siyeh.InspectionGadgetsBundle" key="todo.comment.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.code.maturity.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.maturity.TodoCommentInspection"/>
- <localInspection language="JAVA" suppressId="CallToThreadDumpStack" shortName="ThreadDumpStack" bundle="com.siyeh.InspectionGadgetsBundle"
- key="dumpstack.call.display.name" groupBundle="messages.InspectionsBundle" groupKey="group.names.code.maturity.issues"
- enabledByDefault="false" level="WARNING" implementationClass="com.siyeh.ig.maturity.ThreadDumpStackInspection"/>
- <localInspection language="JAVA" suppressId="UseOfObsoleteCollectionType" shortName="ObsoleteCollection" bundle="com.siyeh.InspectionGadgetsBundle"
- key="use.obsolete.collection.type.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.code.maturity.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.maturity.ObsoleteCollectionInspection"/>
-
- <!--group.names.memory.issues-->
- <localInspection language="JAVA" shortName="StaticCollection" bundle="com.siyeh.InspectionGadgetsBundle" key="static.collection.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.memory.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.memory.StaticCollectionInspection"/>
- <localInspection language="JAVA" shortName="StringBufferField" bundle="com.siyeh.InspectionGadgetsBundle" key="stringbuffer.field.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.memory.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.memory.StringBufferFieldInspection"/>
- <localInspection language="JAVA" suppressId="CallToSystemGC" shortName="SystemGC" bundle="com.siyeh.InspectionGadgetsBundle" key="gc.call.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.memory.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.memory.SystemGCInspection"/>
- <localInspection language="JAVA" suppressId="ZeroLengthArrayAllocation" shortName="ZeroLengthArrayInitialization"
- bundle="com.siyeh.InspectionGadgetsBundle" key="array.allocation.zero.length.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.memory.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.memory.ZeroLengthArrayInitializationInspection"/>
-
- <!--group.names.method.metrics-->
- <localInspection language="JAVA" suppressId="ConstructorWithTooManyParameters" shortName="ParametersPerConstructor"
- bundle="com.siyeh.InspectionGadgetsBundle" key="parameters.per.constructor.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.method.metrics" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.methodmetrics.ParametersPerConstructorInspection"/>
- <localInspection language="JAVA" suppressId="OverlyComplexMethod" shortName="CyclomaticComplexity" bundle="com.siyeh.InspectionGadgetsBundle"
- key="cyclomatic.complexity.display.name" groupBundle="messages.InspectionsBundle" groupKey="group.names.method.metrics"
- enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.methodmetrics.CyclomaticComplexityInspection"/>
- <localInspection language="JAVA" suppressId="OverlyCoupledMethod" shortName="MethodCoupling" bundle="com.siyeh.InspectionGadgetsBundle"
- key="method.coupling.display.name" groupBundle="messages.InspectionsBundle" groupKey="group.names.method.metrics"
- enabledByDefault="false" level="WARNING" implementationClass="com.siyeh.ig.methodmetrics.MethodCouplingInspection"/>
- <localInspection language="JAVA" shortName="MethodWithMultipleLoops" bundle="com.siyeh.InspectionGadgetsBundle"
- key="method.with.multiple.loops.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.method.metrics" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.methodmetrics.MethodWithMultipleLoopsInspection"/>
- <localInspection language="JAVA" suppressId="MethodWithMultipleReturnPoints" shortName="MultipleReturnPointsPerMethod"
- bundle="com.siyeh.InspectionGadgetsBundle" key="multiple.return.points.per.method.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.method.metrics" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.methodmetrics.MultipleReturnPointsPerMethodInspection"/>
- <localInspection language="JAVA" suppressId="OverlyNestedMethod" shortName="NestingDepth" bundle="com.siyeh.InspectionGadgetsBundle"
- key="nesting.depth.display.name" groupBundle="messages.InspectionsBundle" groupKey="group.names.method.metrics"
- enabledByDefault="false" level="WARNING" implementationClass="com.siyeh.ig.methodmetrics.NestingDepthInspection"/>
- <localInspection language="JAVA" suppressId="OverlyLongMethod" shortName="NonCommentSourceStatements" bundle="com.siyeh.InspectionGadgetsBundle"
- key="non.comment.source.statements.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.method.metrics" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.methodmetrics.NonCommentSourceStatementsInspection"/>
- <localInspection language="JAVA" suppressId="MethodWithTooManyParameters" shortName="ParametersPerMethod" bundle="com.siyeh.InspectionGadgetsBundle"
- key="parameters.per.method.display.name" groupBundle="messages.InspectionsBundle" groupKey="group.names.method.metrics"
- enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.methodmetrics.ParametersPerMethodInspection"/>
- <localInspection language="JAVA" suppressId="MethodWithMoreThanThreeNegations" shortName="ThreeNegationsPerMethod"
- bundle="com.siyeh.InspectionGadgetsBundle" key="three.negations.per.method.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.method.metrics" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.methodmetrics.ThreeNegationsPerMethodInspection"/>
- <localInspection language="JAVA" suppressId="MethodWithTooExceptionsDeclared" shortName="ThrownExceptionsPerMethod"
- bundle="com.siyeh.InspectionGadgetsBundle" key="thrown.exceptions.per.method.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.method.metrics" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.methodmetrics.ThrownExceptionsPerMethodInspection"/>
-
- <!--group.names.modularization.issues-->
- <globalInspection shortName="ClassIndependentOfModule" bundle="com.siyeh.InspectionGadgetsBundle"
- key="class.independent.of.module.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.modularization.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.modularization.ClassIndependentOfModuleInspection"/>
- <globalInspection shortName="ClassOnlyUsedInOneModule" bundle="com.siyeh.InspectionGadgetsBundle"
- key="class.only.used.in.one.module.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.modularization.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.modularization.ClassOnlyUsedInOneModuleInspection"/>
- <globalInspection shortName="ModuleWithTooManyClasses" bundle="com.siyeh.InspectionGadgetsBundle"
- key="module.with.too.many.classes.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.modularization.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.modularization.ModuleWithTooManyClassesInspection"/>
- <globalInspection shortName="ModuleWithTooFewClasses" bundle="com.siyeh.InspectionGadgetsBundle"
- key="module.with.too.few.classes.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.modularization.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.modularization.ModuleWithTooFewClassesInspection"/>
-
- <!--group.names.naming.conventions-->
- <localInspection language="JAVA" shortName="AnnotationNamingConvention" bundle="com.siyeh.InspectionGadgetsBundle"
- key="annotation.naming.convention.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.naming.conventions" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.naming.AnnotationNamingConventionInspection"/>
- <localInspection language="JAVA" shortName="BooleanMethodNameMustStartWithQuestion" bundle="com.siyeh.InspectionGadgetsBundle"
- key="boolean.method.name.must.start.with.question.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.naming.conventions" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.naming.BooleanMethodNameMustStartWithQuestionInspection"/>
- <localInspection language="JAVA" shortName="ClassNamePrefixedWithPackageName" bundle="com.siyeh.InspectionGadgetsBundle"
- key="class.name.prefixed.with.package.name.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.naming.conventions" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.naming.ClassNamePrefixedWithPackageNameInspection"/>
- <localInspection language="JAVA" shortName="ClassNameSameAsAncestorName" bundle="com.siyeh.InspectionGadgetsBundle"
- key="class.name.same.as.ancestor.name.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.naming.conventions" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.naming.ClassNameSameAsAncestorNameInspection"/>
- <localInspection language="JAVA" shortName="ClassNamingConvention" bundle="com.siyeh.InspectionGadgetsBundle" key="class.naming.convention.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.naming.conventions" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.naming.ClassNamingConventionInspection"/>
- <localInspection language="JAVA" shortName="ConfusingMainMethod" bundle="com.siyeh.InspectionGadgetsBundle" key="confusing.main.method.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.naming.conventions" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.naming.ConfusingMainMethodInspection"/>
- <localInspection language="JAVA" shortName="ConstantNamingConvention" bundle="com.siyeh.InspectionGadgetsBundle"
- key="constant.naming.convention.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.naming.conventions" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.naming.ConstantNamingConventionInspection"/>
- <localInspection language="JAVA" shortName="DollarSignInName" bundle="com.siyeh.InspectionGadgetsBundle" key="dollar.sign.in.name.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.naming.conventions" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.naming.DollarSignInNameInspection"/>
- <localInspection language="JAVA" shortName="EnumeratedClassNamingConvention" bundle="com.siyeh.InspectionGadgetsBundle"
- key="enumerated.class.naming.convention.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.naming.conventions" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.naming.EnumeratedClassNamingConventionInspection"/>
- <localInspection language="JAVA" shortName="EnumeratedConstantNamingConvention" bundle="com.siyeh.InspectionGadgetsBundle"
- key="enumerated.constant.naming.convention.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.naming.conventions" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.naming.EnumeratedConstantNamingConventionInspection"/>
- <localInspection language="JAVA" suppressId="ExceptionClassNameDoesntEndWithException" shortName="ExceptionNameDoesntEndWithException"
- bundle="com.siyeh.InspectionGadgetsBundle" key="exception.name.doesnt.end.with.exception.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.naming.conventions" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.naming.ExceptionNameDoesntEndWithExceptionInspection"/>
- <localInspection language="JAVA" shortName="InstanceMethodNamingConvention" bundle="com.siyeh.InspectionGadgetsBundle"
- key="instance.method.naming.convention.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.naming.conventions" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.naming.InstanceMethodNamingConventionInspection"/>
- <localInspection language="JAVA" shortName="InstanceVariableNamingConvention" bundle="com.siyeh.InspectionGadgetsBundle"
- key="instance.variable.naming.convention.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.naming.conventions" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.naming.InstanceVariableNamingConventionInspection"/>
- <localInspection language="JAVA" shortName="InterfaceNamingConvention" bundle="com.siyeh.InspectionGadgetsBundle"
- key="interface.naming.convention.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.naming.conventions" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.naming.InterfaceNamingConventionInspection"/>
- <localInspection language="JAVA" shortName="LocalVariableNamingConvention" bundle="com.siyeh.InspectionGadgetsBundle"
- key="local.variable.naming.convention.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.naming.conventions" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.naming.LocalVariableNamingConventionInspection"/>
- <localInspection language="JAVA" shortName="MethodNameSameAsClassName" bundle="com.siyeh.InspectionGadgetsBundle"
- key="method.name.same.as.class.name.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.naming.conventions" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.naming.MethodNameSameAsClassNameInspection"/>
- <localInspection language="JAVA" shortName="MethodNameSameAsParentName" bundle="com.siyeh.InspectionGadgetsBundle"
- key="method.name.same.as.parent.name.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.naming.conventions" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.naming.MethodNameSameAsParentNameInspection"/>
- <localInspection language="JAVA" suppressId="MethodNamesDifferingOnlyByCase" shortName="MethodNamesDifferOnlyByCase"
- bundle="com.siyeh.InspectionGadgetsBundle" key="method.names.differ.only.by.case.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.naming.conventions" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.naming.MethodNamesDifferOnlyByCaseInspection"/>
- <localInspection language="JAVA" shortName="NonBooleanMethodNameMayNotStartWithQuestion" bundle="com.siyeh.InspectionGadgetsBundle"
- key="non.boolean.method.name.must.not.start.with.question.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.naming.conventions" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.naming.NonBooleanMethodNameMayNotStartWithQuestionInspection"/>
- <localInspection language="JAVA" shortName="NonExceptionNameEndsWithException" bundle="com.siyeh.InspectionGadgetsBundle"
- key="non.exception.name.ends.with.exception.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.naming.conventions" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.naming.NonExceptionNameEndsWithExceptionInspection"/>
- <localInspection language="JAVA" shortName="OverloadedMethodsWithSameNumberOfParameters" bundle="com.siyeh.InspectionGadgetsBundle"
- key="overloaded.methods.with.same.number.parameters.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.naming.conventions" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.naming.OverloadedMethodsWithSameNumberOfParametersInspection"/>
- <localInspection language="JAVA" shortName="OverloadedVarargsMethod" bundle="com.siyeh.InspectionGadgetsBundle"
- key="overloaded.vararg.method.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.naming.conventions" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.naming.OverloadedVarargsMethodInspection"/>
- <globalInspection shortName="PackageNamingConvention" bundle="com.siyeh.InspectionGadgetsBundle"
- key="package.naming.convention.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.naming.conventions" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.naming.PackageNamingConventionInspection"/>
- <localInspection language="JAVA" shortName="ParameterNameDiffersFromOverriddenParameter" bundle="com.siyeh.InspectionGadgetsBundle"
- key="parameter.name.differs.from.overridden.parameter.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.naming.conventions" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.naming.ParameterNameDiffersFromOverriddenParameterInspection"/>
- <localInspection language="JAVA" suppressId="MethodParameterNamingConvention" shortName="ParameterNamingConvention"
- bundle="com.siyeh.InspectionGadgetsBundle" key="parameter.naming.convention.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.naming.conventions" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.naming.ParameterNamingConventionInspection"/>
- <localInspection language="JAVA" shortName="QuestionableName" bundle="com.siyeh.InspectionGadgetsBundle" key="questionable.name.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.naming.conventions" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.naming.QuestionableNameInspection"/>
- <localInspection language="JAVA" shortName="StandardVariableNames" bundle="com.siyeh.InspectionGadgetsBundle" key="standard.variable.names.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.naming.conventions" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.naming.StandardVariableNamesInspection"/>
- <localInspection language="JAVA" shortName="StaticMethodNamingConvention" bundle="com.siyeh.InspectionGadgetsBundle"
- key="static.method.naming.convention.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.naming.conventions" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.naming.StaticMethodNamingConventionInspection"/>
- <localInspection language="JAVA" shortName="StaticVariableNamingConvention" bundle="com.siyeh.InspectionGadgetsBundle"
- key="static.variable.naming.convention.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.naming.conventions" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.naming.StaticVariableNamingConventionInspection"/>
- <localInspection language="JAVA" shortName="TypeParameterNamingConvention" bundle="com.siyeh.InspectionGadgetsBundle"
- key="type.parameter.naming.convention.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.naming.conventions" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.naming.TypeParameterNamingConventionInspection"/>
- <localInspection language="JAVA" suppressId="NonConstantFieldWithUpperCaseName" shortName="UpperCaseFieldNameNotConstant"
- bundle="com.siyeh.InspectionGadgetsBundle" key="upper.case.field.name.not.constant.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.naming.conventions" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.naming.UpperCaseFieldNameNotConstantInspection"/>
-
- <!--group.names.numeric.issues-->
- <localInspection language="JAVA" shortName="BadOddness" bundle="com.siyeh.InspectionGadgetsBundle" key="bad.oddness.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.numeric.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.numeric.BadOddnessInspection"/>
- <localInspection language="JAVA" shortName="BigDecimalEquals" bundle="com.siyeh.InspectionGadgetsBundle" key="big.decimal.equals.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.numeric.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.numeric.BigDecimalEqualsInspection"/>
- <localInspection language="JAVA" shortName="CachedNumberConstructorCall" bundle="com.siyeh.InspectionGadgetsBundle"
- key="cached.number.constructor.call.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.numeric.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.numeric.CachedNumberConstructorCallInspection"/>
- <localInspection language="JAVA" suppressId="NumericCastThatLosesPrecision" shortName="CastThatLosesPrecision"
- bundle="com.siyeh.InspectionGadgetsBundle" key="cast.that.loses.precision.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.numeric.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.numeric.CastThatLosesPrecisionInspection"/>
- <localInspection language="JAVA" shortName="CharUsedInArithmeticContext" bundle="com.siyeh.InspectionGadgetsBundle"
- key="char.used.in.arithmetic.context.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.numeric.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.numeric.CharUsedInArithmeticContextInspection"/>
- <localInspection language="JAVA" shortName="ComparisonOfShortAndChar" bundle="com.siyeh.InspectionGadgetsBundle"
- key="comparison.of.short.and.char.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.numeric.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.numeric.ComparisonOfShortAndCharInspection"/>
- <localInspection language="JAVA" shortName="ComparisonToNaN" bundle="com.siyeh.InspectionGadgetsBundle" key="comparison.to.nan.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.numeric.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.numeric.ComparisonToNaNInspection"/>
- <localInspection language="JAVA" shortName="ConfusingFloatingPointLiteral" bundle="com.siyeh.InspectionGadgetsBundle"
- key="confusing.floating.point.literal.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.numeric.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.numeric.ConfusingFloatingPointLiteralInspection"/>
- <localInspection language="JAVA" shortName="ConstantMathCall" bundle="com.siyeh.InspectionGadgetsBundle" key="constant.math.call.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.numeric.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.numeric.ConstantMathCallInspection"/>
- <localInspection language="JAVA" suppressId="divzero" shortName="DivideByZero" bundle="com.siyeh.InspectionGadgetsBundle"
- key="divide.by.zero.display.name" groupBundle="messages.InspectionsBundle" groupKey="group.names.numeric.issues"
- enabledByDefault="false" level="WARNING" implementationClass="com.siyeh.ig.numeric.DivideByZeroInspection"/>
- <localInspection language="JAVA" shortName="DoubleLiteralMayBeFloatLiteral" bundle="com.siyeh.InspectionGadgetsBundle"
- key="double.literal.may.be.float.literal.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.numeric.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.numeric.DoubleLiteralMayBeFloatLiteralInspection"/>
- <localInspection language="JAVA" shortName="FloatingPointEquality" bundle="com.siyeh.InspectionGadgetsBundle" key="floating.point.equality.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.numeric.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.numeric.FloatingPointEqualityInspection"/>
- <localInspection language="JAVA" shortName="ImplicitNumericConversion" bundle="com.siyeh.InspectionGadgetsBundle"
- key="implicit.numeric.conversion.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.numeric.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.numeric.ImplicitNumericConversionInspection"/>
- <localInspection language="JAVA" shortName="IntegerDivisionInFloatingPointContext" bundle="com.siyeh.InspectionGadgetsBundle"
- key="integer.division.in.floating.point.context.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.numeric.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.numeric.IntegerDivisionInFloatingPointContextInspection"/>
- <localInspection language="JAVA" shortName="IntegerMultiplicationImplicitCastToLong" bundle="com.siyeh.InspectionGadgetsBundle"
- key="integer.multiplication.implicit.cast.to.long.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.numeric.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.numeric.IntegerMultiplicationImplicitCastToLongInspection"/>
- <localInspection language="JAVA" shortName="IntLiteralMayBeLongLiteral" bundle="com.siyeh.InspectionGadgetsBundle"
- key="int.literal.may.be.long.literal.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.numeric.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.numeric.IntLiteralMayBeLongLiteralInspection"/>
- <localInspection language="JAVA" suppressId="LongLiteralEndingWithLowercaseL" shortName="LongLiteralsEndingWithLowercaseL"
- bundle="com.siyeh.InspectionGadgetsBundle" key="long.literals.ending.with.lowercase.l.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.numeric.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.numeric.LongLiteralsEndingWithLowercaseLInspection"/>
- <localInspection language="JAVA" shortName="NonReproducibleMathCall" bundle="com.siyeh.InspectionGadgetsBundle"
- key="non.reproducible.math.call.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.numeric.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.numeric.NonReproducibleMathCallInspection"/>
- <localInspection language="JAVA" suppressId="OctalInteger" shortName="OctalLiteral" bundle="com.siyeh.InspectionGadgetsBundle"
- key="octal.literal.display.name" groupBundle="messages.InspectionsBundle" groupKey="group.names.numeric.issues"
- enabledByDefault="true" level="WARNING" implementationClass="com.siyeh.ig.numeric.OctalLiteralInspection"/>
- <localInspection language="JAVA" suppressId="OctalAndDecimalIntegersInSameArray" shortName="OctalAndDecimalIntegersMixed"
- bundle="com.siyeh.InspectionGadgetsBundle" key="octal.and.decimal.integers.in.same.array.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.numeric.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.numeric.OctalAndDecimalIntegersMixedInspection"/>
- <localInspection language="JAVA" shortName="OverlyComplexArithmeticExpression" bundle="com.siyeh.InspectionGadgetsBundle"
- key="overly.complex.arithmetic.expression.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.numeric.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.numeric.OverlyComplexArithmeticExpressionInspection"/>
- <localInspection language="JAVA" shortName="PointlessArithmeticExpression" bundle="com.siyeh.InspectionGadgetsBundle"
- key="pointless.arithmetic.expression.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.numeric.issues" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.numeric.PointlessArithmeticExpressionInspection"/>
- <localInspection language="JAVA" shortName="UnaryPlus" bundle="com.siyeh.InspectionGadgetsBundle" key="unary.plus.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.numeric.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.numeric.UnaryPlusInspection"/>
- <localInspection language="JAVA" shortName="UnnecessaryExplicitNumericCast" bundle="com.siyeh.InspectionGadgetsBundle"
- key="unnecessary.explicit.numeric.cast.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.numeric.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.numeric.UnnecessaryExplicitNumericCastInspection"/>
- <localInspection language="JAVA" shortName="UnnecessaryUnaryMinus" bundle="com.siyeh.InspectionGadgetsBundle" key="unnecessary.unary.minus.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.numeric.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.numeric.UnnecessaryUnaryMinusInspection"/>
- <localInspection language="JAVA" shortName="UnpredictableBigDecimalConstructorCall" bundle="com.siyeh.InspectionGadgetsBundle"
- key="unpredictable.big.decimal.constructor.call.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.numeric.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.numeric.UnpredictableBigDecimalConstructorCallInspection"/>
-
- <!--group.names.packaging.issues-->
- <globalInspection shortName="ClassOnlyUsedInOnePackage" bundle="com.siyeh.InspectionGadgetsBundle"
- key="class.only.used.in.one.package.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.packaging.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.packaging.ClassOnlyUsedInOnePackageInspection"/>
- <globalInspection shortName="ClassUnconnectedToPackage" bundle="com.siyeh.InspectionGadgetsBundle"
- key="class.unconnected.to.package.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.packaging.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.packaging.ClassUnconnectedToPackageInspection"/>
- <globalInspection shortName="DisjointPackage" bundle="com.siyeh.InspectionGadgetsBundle" key="disjoint.package.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.packaging.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.packaging.DisjointPackageInspection"/>
- <globalInspection shortName="EmptyDirectory" bundle="com.siyeh.InspectionGadgetsBundle" key="empty.directory.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.packaging.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.packaging.EmptyDirectoryInspection"/>
- <globalInspection shortName="PackageInMultipleModules" bundle="com.siyeh.InspectionGadgetsBundle"
- key="package.in.multiple.modules.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.packaging.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.packaging.PackageInMultipleModulesInspection"/>
- <globalInspection shortName="PackageWithTooManyClasses" bundle="com.siyeh.InspectionGadgetsBundle"
- key="package.with.too.many.classes.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.packaging.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.packaging.PackageWithTooManyClassesInspection"/>
- <globalInspection shortName="PackageWithTooFewClasses" bundle="com.siyeh.InspectionGadgetsBundle"
- key="package.with.too.few.classes.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.packaging.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.packaging.PackageWithTooFewClassesInspection"/>
-
- <!--group.names.performance.issues-->
- <localInspection language="JAVA" shortName="ArraysAsListWithZeroOrOneArgument" bundle="com.siyeh.InspectionGadgetsBundle"
- key="arrays.as.list.with.zero.or.one.argument.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.performance.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.performance.ArraysAsListWithZeroOrOneArgumentInspection"/>
- <localInspection language="JAVA" suppressId="BooleanConstructorCall" shortName="BooleanConstructor" bundle="com.siyeh.InspectionGadgetsBundle"
- key="boolean.constructor.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.performance.issues" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.performance.BooleanConstructorInspection"/>
- <localInspection language="JAVA" suppressId="CallToSimpleGetterFromWithinClass" shortName="CallToSimpleGetterInClass"
- bundle="com.siyeh.InspectionGadgetsBundle" key="call.to.simple.getter.in.class.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.performance.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.performance.CallToSimpleGetterInClassInspection"/>
- <localInspection language="JAVA" suppressId="CallToSimpleSetterFromWithinClass" shortName="CallToSimpleSetterInClass"
- bundle="com.siyeh.InspectionGadgetsBundle" key="call.to.simple.setter.in.class.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.performance.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.performance.CallToSimpleSetterInClassInspection"/>
- <localInspection language="JAVA" shortName="CollectionContainsUrl" bundle="com.siyeh.InspectionGadgetsBundle" key="collection.contains.url.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.performance.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.performance.CollectionContainsUrlInspection"/>
- <localInspection language="JAVA" suppressId="CollectionWithoutInitialCapacity" shortName="CollectionsMustHaveInitialCapacity"
- bundle="com.siyeh.InspectionGadgetsBundle" key="collections.must.have.initial.capacity.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.performance.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.performance.CollectionsMustHaveInitialCapacityInspection"/>
- <localInspection language="JAVA" shortName="ConstantStringIntern" bundle="com.siyeh.InspectionGadgetsBundle" key="constant.string.intern.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.performance.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.performance.ConstantStringInternInspection"/>
- <localInspection language="JAVA" shortName="DynamicRegexReplaceableByCompiledPattern" bundle="com.siyeh.InspectionGadgetsBundle"
- key="dynamic.regex.replaceable.by.compiled.pattern.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.performance.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.performance.DynamicRegexReplaceableByCompiledPatternInspection"/>
- <localInspection language="JAVA" shortName="EqualsHashCodeCalledOnUrl" bundle="com.siyeh.InspectionGadgetsBundle"
- key="equals.hashcode.called.on.url.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.performance.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.performance.EqualsHashCodeCalledOnUrlInspection"/>
- <localInspection language="JAVA" shortName="FieldMayBeStatic" bundle="com.siyeh.InspectionGadgetsBundle" key="field.may.be.static.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.performance.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.performance.FieldMayBeStaticInspection"/>
- <localInspection language="JAVA" shortName="InnerClassMayBeStatic" bundle="com.siyeh.InspectionGadgetsBundle"
- key="inner.class.may.be.static.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.performance.issues" enabledByDefault="false" level="WARNING" runForWholeFile="true"
- implementationClass="com.siyeh.ig.performance.InnerClassMayBeStaticInspection"/>
- <localInspection language="JAVA" shortName="InstantiatingObjectToGetClassObject" bundle="com.siyeh.InspectionGadgetsBundle"
- key="instantiating.object.to.get.class.object.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.performance.issues" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.performance.InstantiatingObjectToGetClassObjectInspection"/>
- <localInspection language="JAVA" shortName="JavaLangReflect" bundle="com.siyeh.InspectionGadgetsBundle" key="java.lang.reflect.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.performance.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.performance.JavaLangReflectInspection"/>
- <localInspection language="JAVA" shortName="KeySetIterationMayUseEntrySet" bundle="com.siyeh.InspectionGadgetsBundle"
- key="key.set.iteration.may.use.entry.set.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.performance.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.performance.KeySetIterationMayUseEntrySetInspection"/>
- <localInspection language="JAVA" suppressId="SingleCharacterStringConcatenation" shortName="LengthOneStringInIndexOf"
- bundle="com.siyeh.InspectionGadgetsBundle" key="length.one.string.in.indexof.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.performance.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.performance.LengthOneStringInIndexOfInspection"/>
- <localInspection language="JAVA" suppressId="SingleCharacterStringConcatenation" shortName="LengthOneStringsInConcatenation"
- bundle="com.siyeh.InspectionGadgetsBundle" key="length.one.strings.in.concatenation.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.performance.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.performance.LengthOneStringsInConcatenationInspection"/>
- <localInspection language="JAVA" shortName="ManualArrayToCollectionCopy" bundle="com.siyeh.InspectionGadgetsBundle"
- key="manual.array.to.collection.copy.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.performance.issues" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.performance.ManualArrayToCollectionCopyInspection"/>
- <localInspection language="JAVA" shortName="ManualArrayCopy" bundle="com.siyeh.InspectionGadgetsBundle" key="manual.array.copy.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.performance.issues" enabledByDefault="true"
- level="WARNING" implementationClass="com.siyeh.ig.performance.ManualArrayCopyInspection"/>
- <localInspection language="JAVA" shortName="MapReplaceableByEnumMap" bundle="com.siyeh.InspectionGadgetsBundle"
- key="map.replaceable.by.enum.map.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.performance.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.performance.MapReplaceableByEnumMapInspection"/>
- <localInspection language="JAVA" shortName="MethodMayBeStatic" bundle="com.siyeh.InspectionGadgetsBundle" key="method.may.be.static.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.performance.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.performance.MethodMayBeStaticInspection"/>
- <localInspection language="JAVA" shortName="ClassInitializerMayBeStatic" bundle="com.siyeh.InspectionGadgetsBundle"
- key="class.initializer.may.be.static.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.performance.issues" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.performance.ClassInitializerMayBeStaticInspection"/>
- <localInspection language="JAVA" shortName="ObjectAllocationInLoop" bundle="com.siyeh.InspectionGadgetsBundle"
- key="object.allocation.in.loop.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.performance.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.performance.ObjectAllocationInLoopInspection"/>
- <localInspection language="JAVA" suppressId="UsingRandomNextDoubleForRandomInteger" shortName="RandomDoubleForRandomInteger"
- bundle="com.siyeh.InspectionGadgetsBundle" key="random.double.for.random.integer.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.performance.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.performance.RandomDoubleForRandomIntegerInspection"/>
- <localInspection language="JAVA" shortName="RedundantStringFormatCall" bundle="com.siyeh.InspectionGadgetsBundle"
- key="redundant.string.format.call.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.performance.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.performance.RedundantStringFormatCallInspection"/>
- <localInspection language="JAVA" shortName="SetReplaceableByEnumSet" bundle="com.siyeh.InspectionGadgetsBundle"
- key="set.replaceable.by.enum.set.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.performance.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.performance.SetReplaceableByEnumSetInspection"/>
- <localInspection language="JAVA" suppressId="StringBufferWithoutInitialCapacity" shortName="StringBufferMustHaveInitialCapacity"
- bundle="com.siyeh.InspectionGadgetsBundle" key="string.buffer.must.have.initial.capacity.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.performance.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.performance.StringBufferMustHaveInitialCapacityInspection"/>
- <localInspection language="JAVA" shortName="StringBufferToStringInConcatenation" bundle="com.siyeh.InspectionGadgetsBundle"
- key="string.buffer.to.string.in.concatenation.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.performance.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.performance.StringBufferToStringInConcatenationInspection"/>
- <localInspection language="JAVA" suppressId="StringContatenationInLoop" shortName="StringConcatenationInLoops"
- bundle="com.siyeh.InspectionGadgetsBundle" key="string.concatenation.in.loops.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.performance.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.performance.StringConcatenationInLoopsInspection"/>
- <localInspection language="JAVA" shortName="StringConcatenationInsideStringBufferAppend" bundle="com.siyeh.InspectionGadgetsBundle"
- key="string.concatenation.inside.string.buffer.append.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.performance.issues" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.performance.StringConcatenationInsideStringBufferAppendInspection"/>
- <localInspection language="JAVA" suppressId="RedundantStringConstructorCall" shortName="StringConstructor" bundle="com.siyeh.InspectionGadgetsBundle"
- key="string.constructor.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.performance.issues" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.performance.StringConstructorInspection"/>
- <localInspection language="JAVA" shortName="StringEqualsEmptyString" bundle="com.siyeh.InspectionGadgetsBundle"
- key="string.equals.empty.string.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.performance.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.performance.StringEqualsEmptyStringInspection"/>
- <localInspection language="JAVA" suppressId="NonConstantStringShouldBeStringBuffer" shortName="StringReplaceableByStringBuffer"
- bundle="com.siyeh.InspectionGadgetsBundle" key="string.replaceable.by.string.buffer.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.performance.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.performance.StringReplaceableByStringBufferInspection"/>
- <localInspection language="JAVA" suppressId="RedundantStringToString" shortName="StringToString" bundle="com.siyeh.InspectionGadgetsBundle"
- key="string.to.string.display.name" groupBundle="messages.InspectionsBundle" groupKey="group.names.performance.issues"
- enabledByDefault="true" level="WARNING" implementationClass="com.siyeh.ig.performance.StringToStringInspection"/>
- <localInspection language="JAVA" shortName="SubstringZero" bundle="com.siyeh.InspectionGadgetsBundle" key="substring.zero.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.performance.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.performance.SubstringZeroInspection"/>
- <localInspection language="JAVA" shortName="TailRecursion" bundle="com.siyeh.InspectionGadgetsBundle" key="tail.recursion.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.performance.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.performance.TailRecursionInspection"/>
- <localInspection language="JAVA" shortName="ToArrayCallWithZeroLengthArrayArgument" bundle="com.siyeh.InspectionGadgetsBundle"
- key="to.array.call.with.zero.length.array.argument.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.performance.issues" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.performance.ToArrayCallWithZeroLengthArrayArgumentInspection"/>
- <localInspection language="JAVA" suppressId="ConcatenationWithEmptyString" shortName="TrivialStringConcatenation"
- bundle="com.siyeh.InspectionGadgetsBundle" key="trivial.string.concatenation.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.performance.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.performance.TrivialStringConcatenationInspection"/>
- <localInspection language="JAVA" shortName="UnnecessaryTemporaryOnConversionToString" bundle="com.siyeh.InspectionGadgetsBundle"
- key="unnecessary.temporary.on.conversion.to.string.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.performance.issues" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.performance.UnnecessaryTemporaryOnConversionToStringInspection"/>
- <localInspection language="JAVA" shortName="UnnecessaryTemporaryOnConversionFromString" bundle="com.siyeh.InspectionGadgetsBundle"
- key="unnecessary.temporary.on.conversion.from.string.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.performance.issues" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.performance.UnnecessaryTemporaryOnConversionFromStringInspection"/>
- <localInspection language="JAVA" shortName="BoxingBoxedValue" bundle="com.siyeh.InspectionGadgetsBundle" key="boxing.boxed.value.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.performance.issues" enabledByDefault="true"
- level="WARNING" implementationClass="com.siyeh.ig.performance.BoxingBoxedValueInspection"/>
-
- <!--group.names.portability.issues-->
- <localInspection language="JAVA" suppressId="HardcodedFileSeparator" shortName="HardcodedFileSeparators" bundle="com.siyeh.InspectionGadgetsBundle"
- key="hardcoded.file.separator.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.portability.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.portability.HardcodedFileSeparatorsInspection"/>
- <localInspection language="JAVA" suppressId="HardcodedLineSeparator" shortName="HardcodedLineSeparators" bundle="com.siyeh.InspectionGadgetsBundle"
- key="hardcoded.line.separator.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.portability.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.portability.HardcodedLineSeparatorsInspection"/>
- <localInspection language="JAVA" suppressId="NativeMethod" shortName="NativeMethods" bundle="com.siyeh.InspectionGadgetsBundle"
- key="native.method.display.name" groupBundle="messages.InspectionsBundle" groupKey="group.names.portability.issues"
- enabledByDefault="false" level="WARNING" implementationClass="com.siyeh.ig.portability.NativeMethodsInspection"/>
- <localInspection language="JAVA" suppressId="CallToRuntimeExec" shortName="RuntimeExec" bundle="com.siyeh.InspectionGadgetsBundle"
- key="runtime.exec.call.display.name" groupBundle="messages.InspectionsBundle" groupKey="group.names.portability.issues"
- enabledByDefault="false" level="WARNING" implementationClass="com.siyeh.ig.portability.RuntimeExecInspection"/>
- <localInspection language="JAVA" suppressId="CallToSystemExit" shortName="SystemExit" bundle="com.siyeh.InspectionGadgetsBundle"
- key="system.exit.call.display.name" groupBundle="messages.InspectionsBundle" groupKey="group.names.portability.issues"
- enabledByDefault="false" level="WARNING" implementationClass="com.siyeh.ig.portability.SystemExitInspection"/>
- <localInspection language="JAVA" suppressId="CallToSystemGetenv" shortName="SystemGetenv" bundle="com.siyeh.InspectionGadgetsBundle"
- key="system.getenv.call.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.portability.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.portability.SystemGetenvInspection"/>
- <localInspection language="JAVA" shortName="UseOfAWTPeerClass" bundle="com.siyeh.InspectionGadgetsBundle" key="use.of.awt.peer.class.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.portability.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.portability.UseOfAWTPeerClassInspection"/>
- <localInspection language="JAVA" shortName="UseOfJDBCDriverClass" bundle="com.siyeh.InspectionGadgetsBundle"
- key="use.of.concrete.jdbc.driver.class.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.portability.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.portability.UseOfJDBCDriverClassInspection"/>
- <localInspection language="JAVA" shortName="UseOfProcessBuilder" bundle="com.siyeh.InspectionGadgetsBundle" key="use.processbuilder.class.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.portability.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.portability.UseOfProcessBuilderInspection"/>
- <localInspection language="JAVA" shortName="UseOfSunClasses" bundle="com.siyeh.InspectionGadgetsBundle" key="use.sun.classes.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.portability.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.portability.UseOfSunClassesInspection"/>
-
- <!--group.names.declaration.redundancy-->
- <globalInspection shortName="ElementOnlyUsedFromTestCode" bundle="com.siyeh.InspectionGadgetsBundle"
- key="element.only.used.from.test.code.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.declaration.redundancy" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.redundancy.ElementOnlyUsedFromTestCodeInspection"/>
- <localInspection language="JAVA" shortName="UnusedLabel" bundle="com.siyeh.InspectionGadgetsBundle" key="unused.label.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.declaration.redundancy" enabledByDefault="true"
- level="WARNING" implementationClass="com.siyeh.ig.redundancy.UnusedLabelInspection"/>
-
- <!--group.names.resource.management.issues-->
- <localInspection language="JAVA" suppressId="ChannelOpenedButNotSafelyClosed" shortName="ChannelResource" bundle="com.siyeh.InspectionGadgetsBundle"
- key="channel.opened.not.closed.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.resource.management.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.resources.ChannelResourceInspection"/>
- <localInspection language="JAVA" suppressId="CallToDriverManagerGetConnection" shortName="DriverManagerGetConnection"
- bundle="com.siyeh.InspectionGadgetsBundle" key="drivermanager.call.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.resource.management.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.resources.DriverManagerGetConnectionInspection"/>
- <localInspection language="JAVA" suppressId="HibernateResourceOpenedButNotSafelyClosed" shortName="HibernateResource"
- bundle="com.siyeh.InspectionGadgetsBundle" key="hibernate.resource.opened.not.closed.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.resource.management.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.resources.HibernateResourceInspection"/>
- <localInspection language="JAVA" suppressId="IOResourceOpenedButNotSafelyClosed" shortName="IOResource" bundle="com.siyeh.InspectionGadgetsBundle"
- key="i.o.resource.opened.not.closed.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.resource.management.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.resources.IOResourceInspection"/>
- <localInspection language="JAVA" suppressId="JDBCResourceOpenedButNotSafelyClosed" shortName="JDBCResource" bundle="com.siyeh.InspectionGadgetsBundle"
- key="jdbc.resource.opened.not.closed.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.resource.management.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.resources.JDBCResourceInspection"/>
- <localInspection language="JAVA" suppressId="JNDIResourceOpenedButNotSafelyClosed" shortName="JNDIResource" bundle="com.siyeh.InspectionGadgetsBundle"
- key="jndi.resource.opened.not.closed.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.resource.management.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.resources.JNDIResourceInspection"/>
- <localInspection language="JAVA" suppressId="SocketOpenedButNotSafelyClosed" shortName="SocketResource" bundle="com.siyeh.InspectionGadgetsBundle"
- key="socket.opened.not.closed.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.resource.management.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.resources.SocketResourceInspection"/>
-
- <!--group.names.security.issues-->
- <localInspection language="JAVA" shortName="ClassLoaderInstantiation" bundle="com.siyeh.InspectionGadgetsBundle"
- key="class.loader.instantiation.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.security.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.security.ClassLoaderInstantiationInspection"/>
- <localInspection language="JAVA" shortName="CloneableClassInSecureContext" bundle="com.siyeh.InspectionGadgetsBundle"
- key="cloneable.class.in.secure.context.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.security.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.security.CloneableClassInSecureContextInspection"/>
- <localInspection language="JAVA" shortName="CustomClassloader" bundle="com.siyeh.InspectionGadgetsBundle" key="custom.classloader.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.security.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.security.CustomClassloaderInspection"/>
- <localInspection language="JAVA" shortName="CustomSecurityManager" bundle="com.siyeh.InspectionGadgetsBundle" key="custom.security.manager.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.security.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.security.CustomSecurityManagerInspection"/>
- <localInspection language="JAVA" shortName="DeserializableClassInSecureContext" bundle="com.siyeh.InspectionGadgetsBundle"
- key="deserializable.class.in.secure.context.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.security.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.security.DeserializableClassInSecureContextInspection"/>
- <localInspection language="JAVA" shortName="DesignForExtension" bundle="com.siyeh.InspectionGadgetsBundle" key="design.for.extension.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.security.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.security.DesignForExtensionInspection"/>
- <localInspection language="JAVA" shortName="JDBCExecuteWithNonConstantString" bundle="com.siyeh.InspectionGadgetsBundle"
- key="jdbc.execute.with.non.constant.string.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.security.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.security.JDBCExecuteWithNonConstantStringInspection"/>
- <localInspection language="JAVA" shortName="JDBCPrepareStatementWithNonConstantString" bundle="com.siyeh.InspectionGadgetsBundle"
- key="jdbc.prepare.statement.with.non.constant.string.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.security.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.security.JDBCPrepareStatementWithNonConstantStringInspection"/>
- <localInspection language="JAVA" shortName="LoadLibraryWithNonConstantString" bundle="com.siyeh.InspectionGadgetsBundle"
- key="load.library.with.non.constant.string.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.security.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.security.LoadLibraryWithNonConstantStringInspection"/>
- <localInspection language="JAVA" shortName="NonFinalClone" bundle="com.siyeh.InspectionGadgetsBundle" key="non.final.clone.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.security.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.security.NonFinalCloneInspection"/>
- <localInspection language="JAVA" shortName="NonStaticInnerClassInSecureContext" bundle="com.siyeh.InspectionGadgetsBundle"
- key="non.static.inner.class.in.secure.context.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.security.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.security.NonStaticInnerClassInSecureContextInspection"/>
- <localInspection language="JAVA" shortName="PublicStaticArrayField" bundle="com.siyeh.InspectionGadgetsBundle"
- key="public.static.array.field.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.security.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.security.PublicStaticArrayFieldInspection"/>
- <localInspection language="JAVA" shortName="PublicStaticCollectionField" bundle="com.siyeh.InspectionGadgetsBundle"
- key="public.static.collection.field.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.security.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.security.PublicStaticCollectionFieldInspection"/>
- <localInspection language="JAVA" suppressId="CallToRuntimeExecWithNonConstantString" shortName="RuntimeExecWithNonConstantString"
- bundle="com.siyeh.InspectionGadgetsBundle" key="runtime.exec.call.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.security.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.security.RuntimeExecWithNonConstantStringInspection"/>
- <localInspection language="JAVA" shortName="SerializableClassInSecureContext" bundle="com.siyeh.InspectionGadgetsBundle"
- key="serializable.class.in.secure.context.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.security.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.security.SerializableClassInSecureContextInspection"/>
- <localInspection language="JAVA" suppressId="CallToSystemSetSecurityManager" shortName="SystemSetSecurityManager"
- bundle="com.siyeh.InspectionGadgetsBundle" key="system.set.security.manager.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.security.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.security.SystemSetSecurityManagerInspection"/>
- <localInspection language="JAVA" suppressId="AccessOfSystemProperties" shortName="SystemProperties" bundle="com.siyeh.InspectionGadgetsBundle"
- key="system.properties.display.name" groupBundle="messages.InspectionsBundle" groupKey="group.names.security.issues"
- enabledByDefault="false" level="WARNING" implementationClass="com.siyeh.ig.security.SystemPropertiesInspection"/>
- <localInspection language="JAVA" shortName="UnsecureRandomNumberGeneration" bundle="com.siyeh.InspectionGadgetsBundle"
- key="unsecure.random.number.generation.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.security.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.security.UnsecureRandomNumberGenerationInspection"/>
-
- <!--group.names.serialization.issues-->
- <localInspection language="JAVA" shortName="ComparatorNotSerializable" bundle="com.siyeh.InspectionGadgetsBundle"
- key="comparator.not.serializable.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.serialization.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.serialization.ComparatorNotSerializableInspection"/>
- <localInspection language="JAVA" shortName="ExternalizableWithoutPublicNoArgConstructor" bundle="com.siyeh.InspectionGadgetsBundle"
- key="externalizable.without.public.no.arg.constructor.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.serialization.issues" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.serialization.ExternalizableWithoutPublicNoArgConstructorInspection"/>
- <localInspection language="JAVA" suppressId="ExternalizableClassWithSerializationMethods" shortName="ExternalizableWithSerializationMethods"
- bundle="com.siyeh.InspectionGadgetsBundle" key="externalizable.with.serialization.methods.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.serialization.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.serialization.ExternalizableWithSerializationMethodsInspection"/>
- <localInspection language="JAVA" shortName="NonSerializableFieldInSerializableClass" bundle="com.siyeh.InspectionGadgetsBundle"
- key="non.serializable.field.in.serializable.class.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.serialization.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.serialization.NonSerializableFieldInSerializableClassInspection"/>
- <localInspection language="JAVA" shortName="NonSerializableObjectBoundToHttpSession" bundle="com.siyeh.InspectionGadgetsBundle"
- key="non.serializable.object.bound.to.http.session.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.serialization.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.serialization.NonSerializableObjectBoundToHttpSessionInspection"/>
- <localInspection language="JAVA" shortName="NonSerializableObjectPassedToObjectStream" bundle="com.siyeh.InspectionGadgetsBundle"
- key="non.serializable.object.passed.to.object.stream.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.serialization.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.serialization.NonSerializableObjectPassedToObjectStreamInspection"/>
- <localInspection language="JAVA" suppressId="NonSerializableClassWithSerialVersionUID" shortName="NonSerializableWithSerialVersionUIDField"
- bundle="com.siyeh.InspectionGadgetsBundle" key="non.serializable.with.serialversionuid.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.serialization.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.serialization.NonSerializableWithSerialVersionUIDFieldInspection"/>
- <localInspection language="JAVA" suppressId="NonSerializableClassWithSerializationMethods" shortName="NonSerializableWithSerializationMethods"
- bundle="com.siyeh.InspectionGadgetsBundle" key="non.serializable.class.with.readwriteobject.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.serialization.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.serialization.NonSerializableWithSerializationMethodsInspection"/>
- <localInspection language="JAVA" suppressId="NonPrivateSerializationMethod" shortName="ReadObjectAndWriteObjectPrivate"
- bundle="com.siyeh.InspectionGadgetsBundle" key="readwriteobject.private.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.serialization.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.serialization.ReadObjectAndWriteObjectPrivateInspection"/>
- <localInspection language="JAVA" suppressId="InstanceVariableMayNotBeInitializedByReadObject" shortName="ReadObjectInitialization"
- bundle="com.siyeh.InspectionGadgetsBundle" key="readobject.initialization.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.serialization.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.serialization.ReadObjectInitializationInspection"/>
- <localInspection language="JAVA" shortName="ReadResolveAndWriteReplaceProtected" bundle="com.siyeh.InspectionGadgetsBundle"
- key="readresolve.writereplace.protected.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.serialization.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.serialization.ReadResolveAndWriteReplaceProtectedInspection"/>
- <localInspection language="JAVA" shortName="SerialPersistentFieldsWithWrongSignature" bundle="com.siyeh.InspectionGadgetsBundle"
- key="serialpersistentfields.with.wrong.signature.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.serialization.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.serialization.SerialPersistentFieldsWithWrongSignatureInspection"/>
- <localInspection language="JAVA" suppressId="SerialVersionUIDWithWrongSignature" shortName="SerialVersionUIDNotStaticFinal"
- bundle="com.siyeh.InspectionGadgetsBundle" key="serialversionuid.private.static.final.long.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.serialization.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.serialization.SerialVersionUIDNotStaticFinalInspection"/>
- <localInspection language="JAVA" suppressId="serial" shortName="SerializableHasSerialVersionUIDField" bundle="com.siyeh.InspectionGadgetsBundle"
- key="serializable.class.without.serialversionuid.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.serialization.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.serialization.SerializableHasSerialVersionUIDFieldInspection"/>
- <localInspection language="JAVA" shortName="SerializableHasSerializationMethods" bundle="com.siyeh.InspectionGadgetsBundle"
- key="serializable.has.serialization.methods.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.serialization.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.serialization.SerializableHasSerializationMethodsInspection"/>
- <localInspection language="JAVA" suppressId="SerializableNonStaticInnerClassWithoutSerialVersionUID"
- shortName="SerializableInnerClassHasSerialVersionUIDField" bundle="com.siyeh.InspectionGadgetsBundle"
- key="serializable.inner.class.has.serial.version.uid.field.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.serialization.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.serialization.SerializableInnerClassHasSerialVersionUIDFieldInspection"/>
- <localInspection language="JAVA" shortName="SerializableInnerClassWithNonSerializableOuterClass" bundle="com.siyeh.InspectionGadgetsBundle"
- key="serializable.inner.class.with.non.serializable.outer.class.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.serialization.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.serialization.SerializableInnerClassWithNonSerializableOuterClassInspection"/>
- <localInspection language="JAVA" suppressId="SerializableClassWithUnconstructableAncestor" shortName="SerializableWithUnconstructableAncestor"
- bundle="com.siyeh.InspectionGadgetsBundle" key="serializable.with.unconstructable.ancestor.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.serialization.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.serialization.SerializableWithUnconstructableAncestorInspection"/>
- <localInspection language="JAVA" shortName="TransientFieldInNonSerializableClass" bundle="com.siyeh.InspectionGadgetsBundle"
- key="transient.field.in.non.serializable.class.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.serialization.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.serialization.TransientFieldInNonSerializableClassInspection"/>
- <localInspection language="JAVA" shortName="TransientFieldNotInitialized" bundle="com.siyeh.InspectionGadgetsBundle"
- key="transient.field.not.initialized.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.serialization.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.serialization.TransientFieldNotInitializedInspection"/>
-
- <!--group.names.code.style.issues-->
- <localInspection language="JAVA" shortName="CallToStringConcatCanBeReplacedByOperator" bundle="com.siyeh.InspectionGadgetsBundle"
- key="call.to.string.concat.can.be.replaced.by.operator.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.code.style.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.style.CallToStringConcatCanBeReplacedByOperatorInspection"/>
- <localInspection language="JAVA" shortName="CStyleArrayDeclaration" bundle="com.siyeh.InspectionGadgetsBundle"
- key="c.style.array.declaration.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.code.style.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.style.CStyleArrayDeclarationInspection"/>
- <localInspection language="JAVA" suppressId="ChainedEqualityComparisons" shortName="ChainedEquality" bundle="com.siyeh.InspectionGadgetsBundle"
- key="chained.equality.comparisons.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.code.style.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.style.ChainedEqualityInspection"/>
- <localInspection language="JAVA" shortName="ChainedMethodCall" bundle="com.siyeh.InspectionGadgetsBundle" key="chained.method.call.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.code.style.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.style.ChainedMethodCallInspection"/>
- <localInspection language="JAVA" suppressId="ConfusingOctalEscapeSequence" shortName="ConfusingOctalEscape" bundle="com.siyeh.InspectionGadgetsBundle"
- key="confusing.octal.escape.sequence.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.code.style.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.style.ConfusingOctalEscapeInspection"/>
- <localInspection language="JAVA" suppressId="ConstantOnLeftSideOfComparison" shortName="ConstantOnLHSOfComparison"
- bundle="com.siyeh.InspectionGadgetsBundle" key="constant.on.lhs.of.comparison.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.code.style.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.style.ConstantOnLHSOfComparisonInspection"/>
- <localInspection language="JAVA" suppressId="ConstantOnRightSideOfComparison" shortName="ConstantOnRHSOfComparison"
- bundle="com.siyeh.InspectionGadgetsBundle" key="constant.on.rhs.of.comparison.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.code.style.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.style.ConstantOnRHSOfComparisonInspection"/>
- <localInspection language="JAVA" shortName="ControlFlowStatementWithoutBraces" bundle="com.siyeh.InspectionGadgetsBundle"
- key="control.flow.statement.without.braces.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.code.style.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.style.ControlFlowStatementWithoutBracesInspection"/>
- <localInspection language="JAVA" shortName="EqualsCalledOnEnumConstant" bundle="com.siyeh.InspectionGadgetsBundle"
- key="equals.called.on.enum.constant.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.code.style.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.style.EqualsCalledOnEnumConstantInspection"/>
- <localInspection language="JAVA" suppressId="ClassExplicitlyExtendsObject" shortName="ExtendsObject" bundle="com.siyeh.InspectionGadgetsBundle"
- key="extends.object.display.name" groupBundle="messages.InspectionsBundle" groupKey="group.names.code.style.issues"
- enabledByDefault="true" level="WARNING" implementationClass="com.siyeh.ig.style.ExtendsObjectInspection"/>
- <localInspection language="JAVA" shortName="FieldMayBeFinal" bundle="com.siyeh.InspectionGadgetsBundle" key="field.may.be.final.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.code.style.issues" enabledByDefault="false" runForWholeFile="true"
- level="WARNING" implementationClass="com.siyeh.ig.style.FieldMayBeFinalInspection"/>
- <localInspection language="JAVA" shortName="ImplicitCallToSuper" bundle="com.siyeh.InspectionGadgetsBundle" key="implicit.call.to.super.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.code.style.issues" enabledByDefault="false" runForWholeFile="true"
- level="WARNING" implementationClass="com.siyeh.ig.style.ImplicitCallToSuperInspection"/>
- <localInspection language="JAVA" shortName="ListIndexOfReplaceableByContains" bundle="com.siyeh.InspectionGadgetsBundle"
- key="indexof.replaceable.by.contains.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.code.style.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.style.ListIndexOfReplaceableByContainsInspection"/>
- <localInspection language="JAVA" shortName="LiteralAsArgToStringEquals" bundle="com.siyeh.InspectionGadgetsBundle"
- key="literal.as.arg.to.string.equals.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.code.style.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.style.LiteralAsArgToStringEqualsInspection"/>
- <localInspection language="JAVA" shortName="MissortedModifiers" bundle="com.siyeh.InspectionGadgetsBundle" key="missorted.modifiers.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.code.style.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.style.MissortedModifiersInspection"/>
- <localInspection language="JAVA" suppressId="MultipleVariablesInDeclaration" shortName="MultipleDeclaration" bundle="com.siyeh.InspectionGadgetsBundle"
- key="multiple.declaration.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.code.style.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.style.MultipleDeclarationInspection"/>
- <localInspection language="JAVA" suppressId="VariablesOfDifferentTypesInDeclaration" shortName="MultipleTypedDeclaration"
- bundle="com.siyeh.InspectionGadgetsBundle" key="multiple.typed.declaration.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.code.style.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.style.MultipleTypedDeclarationInspection"/>
- <localInspection language="JAVA" shortName="UnnecessaryConstantArrayCreationExpression" bundle="com.siyeh.InspectionGadgetsBundle"
- key="unnecessary.constant.array.creation.expression.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.code.style.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.style.UnnecessaryConstantArrayCreationExpressionInspection"/>
- <localInspection language="JAVA" shortName="NestedMethodCall" bundle="com.siyeh.InspectionGadgetsBundle" key="nested.method.call.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.code.style.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.style.NestedMethodCallInspection"/>
- <localInspection language="JAVA" shortName="RedundantFieldInitialization" bundle="com.siyeh.InspectionGadgetsBundle"
- key="redundant.field.initialization.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.code.style.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.style.RedundantFieldInitializationInspection"/>
- <localInspection language="JAVA" suppressId="RedundantInterfaceDeclaration" shortName="RedundantImplements" bundle="com.siyeh.InspectionGadgetsBundle"
- key="redundant.implements.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.code.style.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.style.RedundantImplementsInspection"/>
- <localInspection language="JAVA" suppressId="ReturnOfThis" shortName="ReturnThis" bundle="com.siyeh.InspectionGadgetsBundle"
- key="return.this.display.name" groupBundle="messages.InspectionsBundle" groupKey="group.names.code.style.issues"
- enabledByDefault="false" level="WARNING" implementationClass="com.siyeh.ig.style.ReturnThisInspection"/>
- <localInspection language="JAVA" shortName="SimplifiableAnnotation" bundle="com.siyeh.InspectionGadgetsBundle"
- key="simplifiable.annotation.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.code.style.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.style.SimplifiableAnnotationInspection"/>
- <localInspection language="JAVA" shortName="SimplifiableEqualsExpression" bundle="com.siyeh.InspectionGadgetsBundle"
- key="simplifiable.equals.expression.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.code.style.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.controlflow.SimplifiableEqualsExpressionInspection"/>
- <localInspection language="JAVA" shortName="StringBufferReplaceableByString" bundle="com.siyeh.InspectionGadgetsBundle"
- key="string.buffer.replaceable.by.string.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.performance.issues" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.style.StringBufferReplaceableByStringInspection"/>
- <localInspection language="JAVA" suppressId="TypeParameterExplicitlyExtendsObject" shortName="TypeParameterExtendsObject"
- bundle="com.siyeh.InspectionGadgetsBundle" key="type.parameter.extends.object.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.code.style.issues" enabledByDefault="true"
- level="WARNING" implementationClass="com.siyeh.ig.style.TypeParameterExtendsObjectInspection"/>
- <localInspection language="JAVA" shortName="UnnecessarilyQualifiedInnerClassAccess" bundle="com.siyeh.InspectionGadgetsBundle"
- key="unnecessarily.qualified.inner.class.access.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.code.style.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.style.UnnecessarilyQualifiedInnerClassAccessInspection"/>
- <localInspection language="JAVA" shortName="UnnecessarilyQualifiedStaticUsage" bundle="com.siyeh.InspectionGadgetsBundle"
- key="unnecessarily.qualified.static.usage.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.code.style.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.style.UnnecessarilyQualifiedStaticUsageInspection"/>
- <localInspection language="JAVA" suppressId="UnnecessaryCodeBlock" shortName="UnnecessaryBlockStatement" bundle="com.siyeh.InspectionGadgetsBundle"
- key="unnecessary.code.block.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.code.style.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.style.UnnecessaryBlockStatementInspection"/>
- <localInspection language="JAVA" shortName="UnnecessaryCallToStringValueOf" bundle="com.siyeh.InspectionGadgetsBundle"
- key="unnecessary.call.to.string.valueof.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.code.style.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.style.UnnecessaryCallToStringValueOfInspection"/>
- <localInspection language="JAVA" shortName="UnnecessaryToStringCall" bundle="com.siyeh.InspectionGadgetsBundle"
- key="unnecessary.tostring.call.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.code.style.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.style.UnnecessaryToStringCallInspection"/>
- <localInspection language="JAVA" suppressId="RedundantNoArgConstructor" shortName="UnnecessaryConstructor" bundle="com.siyeh.InspectionGadgetsBundle"
- key="unnecessary.constructor.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.code.style.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.style.UnnecessaryConstructorInspection"/>
- <localInspection language="JAVA" shortName="UnnecessaryEnumModifier" bundle="com.siyeh.InspectionGadgetsBundle"
- key="unnecessary.enum.modifier.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.code.style.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.style.UnnecessaryEnumModifierInspection"/>
- <localInspection language="JAVA" shortName="UnnecessaryFinalOnLocalVariableOrParameter" bundle="com.siyeh.InspectionGadgetsBundle"
- key="unnecessary.final.on.local.variable.or.parameter.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.code.style.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.style.UnnecessaryFinalOnLocalVariableOrParameterInspection"/>
- <localInspection language="JAVA" shortName="UnnecessaryFullyQualifiedName" bundle="com.siyeh.InspectionGadgetsBundle"
- key="unnecessary.fully.qualified.name.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.code.style.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.style.UnnecessaryFullyQualifiedNameInspection"/>
- <localInspection language="JAVA" shortName="UnnecessaryInterfaceModifier" bundle="com.siyeh.InspectionGadgetsBundle"
- key="unnecessary.interface.modifier.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.code.style.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.style.UnnecessaryInterfaceModifierInspection"/>
- <localInspection language="JAVA" shortName="UnnecessaryParentheses" bundle="com.siyeh.InspectionGadgetsBundle"
- key="unnecessary.parentheses.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.code.style.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.style.UnnecessaryParenthesesInspection"/>
- <localInspection language="JAVA" shortName="UnnecessarilyQualifiedStaticallyImportedElement" bundle="com.siyeh.InspectionGadgetsBundle"
- key="unnecessarily.qualified.statically.imported.element.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.code.style.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.style.UnnecessarilyQualifiedStaticallyImportedElementInspection"/>
- <localInspection language="JAVA" shortName="UnnecessaryQualifierForThis" bundle="com.siyeh.InspectionGadgetsBundle"
- key="unnecessary.qualifier.for.this.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.code.style.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.style.UnnecessaryQualifierForThisInspection"/>
- <localInspection language="JAVA" shortName="UnnecessarySemicolon" bundle="com.siyeh.InspectionGadgetsBundle" key="unnecessary.semicolon.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.code.style.issues" enabledByDefault="true"
- level="WARNING" implementationClass="com.siyeh.ig.style.UnnecessarySemicolonInspection"/>
- <localInspection language="JAVA" suppressId="UnnecessaryCallToSuper" shortName="UnnecessarySuperConstructor" bundle="com.siyeh.InspectionGadgetsBundle"
- key="unnecessary.super.constructor.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.code.style.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.style.UnnecessarySuperConstructorInspection"/>
- <localInspection language="JAVA" shortName="UnnecessarySuperQualifier" bundle="com.siyeh.InspectionGadgetsBundle"
- key="unnecessary.super.qualifier.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.code.style.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.style.UnnecessarySuperQualifierInspection"/>
- <localInspection language="JAVA" shortName="UnnecessaryThis" bundle="com.siyeh.InspectionGadgetsBundle" key="unnecessary.this.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.code.style.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.style.UnnecessaryThisInspection"/>
- <localInspection language="JAVA" shortName="UnqualifiedFieldAccess" bundle="com.siyeh.InspectionGadgetsBundle"
- key="unqualified.field.access.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.code.style.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.style.UnqualifiedFieldAccessInspection"/>
- <localInspection language="JAVA" shortName="UnqualifiedMethodAccess" bundle="com.siyeh.InspectionGadgetsBundle"
- key="unqualified.method.access.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.code.style.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.style.UnqualifiedMethodAccessInspection"/>
- <localInspection language="JAVA" shortName="UnqualifiedInnerClassAccess" bundle="com.siyeh.InspectionGadgetsBundle"
- key="unqualified.inner.class.access.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.code.style.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.style.UnqualifiedInnerClassAccessInspection"/>
- <localInspection language="JAVA" shortName="UnqualifiedStaticUsage" bundle="com.siyeh.InspectionGadgetsBundle"
- key="unqualified.static.usage.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.code.style.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.style.UnqualifiedStaticUsageInspection"/>
- <localInspection language="JAVA" shortName="UnclearBinaryExpression" bundle="com.siyeh.InspectionGadgetsBundle"
- key="unclear.binary.expression.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.code.style.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.style.UnclearBinaryExpressionInspection"/>
- <localInspection language="JAVA" shortName="SizeReplaceableByIsEmpty" bundle="com.siyeh.InspectionGadgetsBundle"
- key="size.replaceable.by.isempty.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.code.style.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.style.SizeReplaceableByIsEmptyInspection"/>
-
- <!--group.names.threading.issues-->
- <localInspection language="JAVA" suppressId="AccessToNonThreadSafeStaticField" shortName="AccessToNonThreadSafeStaticFieldFromInstance"
- bundle="com.siyeh.InspectionGadgetsBundle" key="access.to.non.thread.safe.static.field.from.instance.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.threading.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.threading.AccessToNonThreadSafeStaticFieldFromInstanceInspection"/>
- <localInspection language="JAVA" shortName="AccessToStaticFieldLockedOnInstance" bundle="com.siyeh.InspectionGadgetsBundle"
- key="access.to.static.field.locked.on.instance.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.threading.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.threading.AccessToStaticFieldLockedOnInstanceInspection"/>
- <localInspection language="JAVA" shortName="AwaitNotInLoop" bundle="com.siyeh.InspectionGadgetsBundle" key="await.not.in.loop.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.threading.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.threading.AwaitNotInLoopInspection"/>
- <localInspection language="JAVA" shortName="AwaitWithoutCorrespondingSignal" bundle="com.siyeh.InspectionGadgetsBundle"
- key="await.without.corresponding.signal.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.threading.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.threading.AwaitWithoutCorrespondingSignalInspection"/>
- <localInspection language="JAVA" shortName="BusyWait" bundle="com.siyeh.InspectionGadgetsBundle" key="busy.wait.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.threading.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.threading.BusyWaitInspection"/>
- <localInspection language="JAVA" shortName="CallToNativeMethodWhileLocked" bundle="com.siyeh.InspectionGadgetsBundle"
- key="call.to.native.method.while.locked.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.threading.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.threading.CallToNativeMethodWhileLockedInspection"/>
- <localInspection language="JAVA" suppressId="CallToSignalInsteadOfSignalAll" shortName="ConditionSignal" bundle="com.siyeh.InspectionGadgetsBundle"
- key="condition.signal.display.name" groupBundle="messages.InspectionsBundle" groupKey="group.names.threading.issues"
- enabledByDefault="false" level="WARNING" implementationClass="com.siyeh.ig.threading.ConditionSignalInspection"/>
- <localInspection language="JAVA" shortName="DoubleCheckedLocking" bundle="com.siyeh.InspectionGadgetsBundle" key="double.checked.locking.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.threading.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.threading.DoubleCheckedLockingInspection"/>
- <localInspection language="JAVA" shortName="EmptySynchronizedStatement" bundle="com.siyeh.InspectionGadgetsBundle"
- key="empty.synchronized.statement.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.threading.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.threading.EmptySynchronizedStatementInspection"/>
- <localInspection language="JAVA" suppressId="ClassExplicitlyExtendsThread" shortName="ExtendsThread" bundle="com.siyeh.InspectionGadgetsBundle"
- key="extends.thread.display.name" groupBundle="messages.InspectionsBundle" groupKey="group.names.threading.issues"
- enabledByDefault="false" level="WARNING" implementationClass="com.siyeh.ig.threading.ExtendsThreadInspection"/>
- <localInspection language="JAVA" shortName="FieldAccessedSynchronizedAndUnsynchronized" bundle="com.siyeh.InspectionGadgetsBundle"
- key="field.accessed.synchronized.and.unsynchronized.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.threading.issues" enabledByDefault="false" level="WARNING" runForWholeFile="true"
- implementationClass="com.siyeh.ig.threading.FieldAccessedSynchronizedAndUnsynchronizedInspection"/>
- <localInspection language="JAVA" shortName="MethodMayBeSynchronized" bundle="com.siyeh.InspectionGadgetsBundle"
- key="method.may.be.synchronized.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.threading.issues" enabledByDefault="false" level="WARNING" runForWholeFile="true"
- implementationClass="com.siyeh.ig.threading.MethodMayBeSynchronizedInspection"/>
- <localInspection language="JAVA" shortName="NakedNotify" bundle="com.siyeh.InspectionGadgetsBundle" key="naked.notify.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.threading.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.threading.NakedNotifyInspection"/>
- <localInspection language="JAVA" shortName="NestedSynchronizedStatement" bundle="com.siyeh.InspectionGadgetsBundle"
- key="nested.synchronized.statement.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.threading.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.threading.NestedSynchronizedStatementInspection"/>
- <localInspection language="JAVA" shortName="NonAtomicOperationOnVolatileField" bundle="com.siyeh.InspectionGadgetsBundle"
- key="non.atomic.operation.on.volatile.field.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.threading.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.threading.NonAtomicOperationOnVolatileFieldInspection"/>
- <localInspection language="JAVA" shortName="NonSynchronizedMethodOverridesSynchronizedMethod" bundle="com.siyeh.InspectionGadgetsBundle"
- key="non.synchronized.method.overrides.synchronized.method.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.threading.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.threading.NonSynchronizedMethodOverridesSynchronizedMethodInspection"/>
- <localInspection language="JAVA" shortName="NotifyCalledOnCondition" bundle="com.siyeh.InspectionGadgetsBundle"
- key="notify.called.on.condition.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.threading.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.threading.NotifyCalledOnConditionInspection"/>
- <localInspection language="JAVA" shortName="NotifyNotInSynchronizedContext" bundle="com.siyeh.InspectionGadgetsBundle"
- key="notify.not.in.synchronized.context.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.threading.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.threading.NotifyNotInSynchronizedContextInspection"/>
- <localInspection language="JAVA" shortName="NotifyWithoutCorrespondingWait" bundle="com.siyeh.InspectionGadgetsBundle"
- key="notify.without.corresponding.wait.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.threading.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.threading.NotifyWithoutCorrespondingWaitInspection"/>
- <localInspection language="JAVA" suppressId="CallToNotifyInsteadOfNotifyAll" shortName="ObjectNotify" bundle="com.siyeh.InspectionGadgetsBundle"
- key="object.notify.display.name" groupBundle="messages.InspectionsBundle" groupKey="group.names.threading.issues"
- enabledByDefault="false" level="WARNING" implementationClass="com.siyeh.ig.threading.ObjectNotifyInspection"/>
- <localInspection language="JAVA" suppressId="NonPrivateFieldAccessedInSynchronizedContext" shortName="PublicFieldAccessedInSynchronizedContext"
- bundle="com.siyeh.InspectionGadgetsBundle" key="public.field.accessed.in.synchronized.context.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.threading.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.threading.PublicFieldAccessedInSynchronizedContextInspection"/>
- <localInspection language="JAVA" suppressId="LockAcquiredButNotSafelyReleased" shortName="SafeLock" bundle="com.siyeh.InspectionGadgetsBundle"
- key="safe.lock.display.name" groupBundle="messages.InspectionsBundle" groupKey="group.names.threading.issues"
- enabledByDefault="false" level="WARNING" implementationClass="com.siyeh.ig.threading.SafeLockInspection"/>
- <localInspection language="JAVA" shortName="SignalWithoutCorrespondingAwait" bundle="com.siyeh.InspectionGadgetsBundle"
- key="signal.without.corresponding.await.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.threading.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.threading.SignalWithoutCorrespondingAwaitInspection"/>
- <localInspection language="JAVA" shortName="SleepWhileHoldingLock" bundle="com.siyeh.InspectionGadgetsBundle"
- key="sleep.while.holding.lock.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.threading.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.threading.SleepWhileHoldingLockInspection"/>
- <localInspection language="JAVA" shortName="SynchronizationOnLocalVariableOrMethodParameter" bundle="com.siyeh.InspectionGadgetsBundle"
- key="synchronization.on.local.variable.or.method.parameter.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.threading.issues" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.threading.SynchronizationOnLocalVariableOrMethodParameterInspection"/>
- <localInspection language="JAVA" shortName="SynchronizationOnStaticField" bundle="com.siyeh.InspectionGadgetsBundle"
- key="synchronization.on.static.field.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.threading.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.threading.SynchronizationOnStaticFieldInspection"/>
- <localInspection language="JAVA" suppressId="SynchroniziationOnLockObject" shortName="SynchronizeOnLock" bundle="com.siyeh.InspectionGadgetsBundle"
- key="synchronize.on.lock.display.name" groupBundle="messages.InspectionsBundle" groupKey="group.names.threading.issues"
- enabledByDefault="false" level="WARNING" implementationClass="com.siyeh.ig.threading.SynchronizeOnLockInspection"/>
- <localInspection language="JAVA" shortName="SynchronizeOnNonFinalField" bundle="com.siyeh.InspectionGadgetsBundle"
- key="synchronize.on.non.final.field.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.threading.issues" enabledByDefault="true" level="WARNING"
- implementationClass="com.siyeh.ig.threading.SynchronizeOnNonFinalFieldInspection"/>
- <localInspection language="JAVA" shortName="SynchronizedOnLiteralObject" bundle="com.siyeh.InspectionGadgetsBundle"
- key="synchronized.on.literal.object.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.threading.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.threading.SynchronizedOnLiteralObjectInspection"/>
- <localInspection language="JAVA" shortName="SynchronizeOnThis" bundle="com.siyeh.InspectionGadgetsBundle" key="synchronize.on.this.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.threading.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.threading.SynchronizeOnThisInspection"/>
- <localInspection language="JAVA" shortName="SynchronizedMethod" bundle="com.siyeh.InspectionGadgetsBundle" key="synchronized.method.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.threading.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.threading.SynchronizedMethodInspection"/>
- <localInspection language="JAVA" suppressId="CallToSystemRunFinalizersOnExit" shortName="SystemRunFinalizersOnExit"
- bundle="com.siyeh.InspectionGadgetsBundle" key="system.run.finalizers.on.exit.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.threading.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.threading.SystemRunFinalizersOnExitInspection"/>
- <localInspection language="JAVA" shortName="ThreadLocalNotStaticFinal" bundle="com.siyeh.InspectionGadgetsBundle"
- key="thread.local.not.static.final.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.threading.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.threading.ThreadLocalNotStaticFinalInspection"/>
- <localInspection language="JAVA" suppressId="CallToThreadSetPriority" shortName="ThreadPriority" bundle="com.siyeh.InspectionGadgetsBundle"
- key="thread.priority.display.name" groupBundle="messages.InspectionsBundle" groupKey="group.names.threading.issues"
- enabledByDefault="false" level="WARNING" implementationClass="com.siyeh.ig.threading.ThreadPriorityInspection"/>
- <localInspection language="JAVA" suppressId="CallToThreadRun" shortName="ThreadRun" bundle="com.siyeh.InspectionGadgetsBundle"
- key="thread.run.display.name" groupBundle="messages.InspectionsBundle" groupKey="group.names.threading.issues"
- enabledByDefault="false" level="WARNING" implementationClass="com.siyeh.ig.threading.ThreadRunInspection"/>
- <localInspection language="JAVA" suppressId="CallToThreadStartDuringObjectConstruction" shortName="ThreadStartInConstruction"
- bundle="com.siyeh.InspectionGadgetsBundle" key="thread.start.in.construction.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.threading.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.threading.ThreadStartInConstructionInspection"/>
- <localInspection language="JAVA" suppressId="CallToThreadStopSuspendOrResumeManager" shortName="ThreadStopSuspendResume"
- bundle="com.siyeh.InspectionGadgetsBundle" key="thread.stop.suspend.resume.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.threading.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.threading.ThreadStopSuspendResumeInspection"/>
- <localInspection language="JAVA" suppressId="InstantiatingAThreadWithDefaultRunMethod" shortName="ThreadWithDefaultRunMethod"
- bundle="com.siyeh.InspectionGadgetsBundle" key="thread.with.default.run.method.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.threading.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.threading.ThreadWithDefaultRunMethodInspection"/>
- <localInspection language="JAVA" suppressId="CallToThreadYield" shortName="ThreadYield" bundle="com.siyeh.InspectionGadgetsBundle"
- key="thread.yield.display.name" groupBundle="messages.InspectionsBundle" groupKey="group.names.threading.issues"
- enabledByDefault="false" level="WARNING" implementationClass="com.siyeh.ig.threading.ThreadYieldInspection"/>
- <localInspection language="JAVA" shortName="UnconditionalWait" bundle="com.siyeh.InspectionGadgetsBundle" key="unconditional.wait.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.threading.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.threading.UnconditionalWaitInspection"/>
- <localInspection language="JAVA" shortName="VolatileArrayField" bundle="com.siyeh.InspectionGadgetsBundle" key="volatile.array.field.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.threading.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.threading.VolatileArrayFieldInspection"/>
- <localInspection language="JAVA" shortName="VolatileLongOrDoubleField" bundle="com.siyeh.InspectionGadgetsBundle"
- key="volatile.long.or.double.field.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.threading.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.threading.VolatileLongOrDoubleFieldInspection"/>
- <localInspection language="JAVA" shortName="WaitCalledOnCondition" bundle="com.siyeh.InspectionGadgetsBundle"
- key="wait.called.on.condition.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.threading.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.threading.WaitCalledOnConditionInspection"/>
- <localInspection language="JAVA" shortName="WaitNotInLoop" bundle="com.siyeh.InspectionGadgetsBundle" key="wait.not.in.loop.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.threading.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.threading.WaitNotInLoopInspection"/>
- <localInspection language="JAVA" suppressId="WaitWhileNotSynced" shortName="WaitNotInSynchronizedContext" bundle="com.siyeh.InspectionGadgetsBundle"
- key="wait.not.in.synchronized.context.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.threading.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.threading.WaitNotInSynchronizedContextInspection"/>
- <localInspection language="JAVA" shortName="WaitOrAwaitWithoutTimeout" bundle="com.siyeh.InspectionGadgetsBundle"
- key="wait.or.await.without.timeout.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.threading.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.threading.WaitOrAwaitWithoutTimeoutInspection"/>
- <localInspection language="JAVA" shortName="WaitWhileHoldingTwoLocks" bundle="com.siyeh.InspectionGadgetsBundle"
- key="wait.while.holding.two.locks.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.threading.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.threading.WaitWhileHoldingTwoLocksInspection"/>
- <localInspection language="JAVA" shortName="WaitWithoutCorrespondingNotify" bundle="com.siyeh.InspectionGadgetsBundle"
- key="wait.without.corresponding.notify.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.threading.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.threading.WaitWithoutCorrespondingNotifyInspection"/>
- <localInspection language="JAVA" shortName="WhileLoopSpinsOnField" bundle="com.siyeh.InspectionGadgetsBundle"
- key="while.loop.spins.on.field.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.threading.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.threading.WhileLoopSpinsOnFieldInspection"/>
-
- <!--group.names.visibility.issues-->
- <localInspection language="JAVA" shortName="AmbiguousMethodCall" bundle="com.siyeh.InspectionGadgetsBundle" key="ambiguous.method.call.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.visibility.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.visibility.AmbiguousMethodCallInspection"/>
- <localInspection language="JAVA" shortName="AmbiguousFieldAccess" bundle="com.siyeh.InspectionGadgetsBundle" key="ambiguous.field.access.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.visibility.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.visibility.AmbiguousFieldAccessInspection"/>
- <localInspection language="JAVA" shortName="AnonymousClassVariableHidesContainingMethodVariable" bundle="com.siyeh.InspectionGadgetsBundle"
- key="anonymous.class.variable.hides.containing.method.variable.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.visibility.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.visibility.AnonymousClassVariableHidesContainingMethodVariableInspection"/>
- <localInspection language="JAVA" suppressId="ClassEscapesDefinedScope" shortName="ClassEscapesItsScope" bundle="com.siyeh.InspectionGadgetsBundle"
- key="class.escapes.defined.scope.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.visibility.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.visibility.ClassEscapesItsScopeInspection"/>
- <localInspection language="JAVA" suppressId="FieldNameHidesFieldInSuperclass" shortName="FieldHidesSuperclassField"
- bundle="com.siyeh.InspectionGadgetsBundle" key="field.name.hides.in.superclass.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.visibility.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.visibility.FieldHidesSuperclassFieldInspection"/>
- <localInspection language="JAVA" suppressId="InnerClassFieldHidesOuterClassField" shortName="InnerClassVariableHidesOuterClassVariable"
- bundle="com.siyeh.InspectionGadgetsBundle" key="inner.class.field.hides.outer.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.visibility.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.visibility.InnerClassVariableHidesOuterClassVariableInspection"/>
- <localInspection language="JAVA" suppressId="LocalVariableHidesMemberVariable" shortName="LocalVariableHidingMemberVariable"
- bundle="com.siyeh.InspectionGadgetsBundle" key="local.variable.hides.member.variable.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.visibility.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.visibility.LocalVariableHidingMemberVariableInspection"/>
- <localInspection language="JAVA" suppressId="MethodOverridesPrivateMethodOfSuperclass" shortName="MethodOverridesPackageLocalMethod"
- bundle="com.siyeh.InspectionGadgetsBundle" key="method.overrides.package.local.method.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.visibility.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.visibility.MethodOverridesPackageLocalMethodInspection"/>
- <localInspection language="JAVA" suppressId="MethodOverloadsMethodOfSuperclass" shortName="MethodOverloadsParentMethod"
- bundle="com.siyeh.InspectionGadgetsBundle" key="method.overloads.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.visibility.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.visibility.MethodOverloadsParentMethodInspection"/>
- <localInspection language="JAVA" suppressId="MethodOverridesPrivateMethodOfSuperclass" shortName="MethodOverridesPrivateMethod"
- bundle="com.siyeh.InspectionGadgetsBundle" key="method.overrides.private.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.visibility.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.visibility.MethodOverridesPrivateMethodInspection"/>
- <localInspection language="JAVA" suppressId="MethodOverridesStaticMethodOfSuperclass" shortName="MethodOverridesStaticMethod"
- bundle="com.siyeh.InspectionGadgetsBundle" key="method.overrides.static.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.visibility.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.visibility.MethodOverridesStaticMethodInspection"/>
- <localInspection language="JAVA" shortName="TypeParameterHidesVisibleType" bundle="com.siyeh.InspectionGadgetsBundle"
- key="type.parameter.hides.visible.type.display.name" groupBundle="messages.InspectionsBundle"
- groupKey="group.names.visibility.issues" enabledByDefault="false" level="WARNING"
- implementationClass="com.siyeh.ig.visibility.TypeParameterHidesVisibleTypeInspection"/>
- <localInspection language="JAVA" suppressId="ParameterHidesMemberVariable" shortName="ParameterHidingMemberVariable"
- bundle="com.siyeh.InspectionGadgetsBundle" key="parameter.hides.member.variable.display.name"
- groupBundle="messages.InspectionsBundle" groupKey="group.names.visibility.issues" enabledByDefault="false"
- level="WARNING" implementationClass="com.siyeh.ig.visibility.ParameterHidingMemberVariableInspection"/>
- </extensions>
-
- <application-components>
- <component>
- <implementation-class>com.siyeh.ig.InspectionGadgetsPlugin</implementation-class>
- </component>
- </application-components>
- <project-components>
- <component>
- <implementation-class>com.siyeh.ig.InspectionGadgetsProjectComponent</implementation-class>
- </component>
- </project-components>
-
-</idea-plugin>
diff --git a/plugins/InspectionGadgets/src/com/intellij/codeInspection/booleanIsAlwaysInverted/BooleanMethodIsAlwaysInvertedInspection.java b/plugins/InspectionGadgets/src/com/intellij/codeInspection/booleanIsAlwaysInverted/BooleanMethodIsAlwaysInvertedInspection.java
index 48a5a9d..f269175 100644
--- a/plugins/InspectionGadgets/src/com/intellij/codeInspection/booleanIsAlwaysInverted/BooleanMethodIsAlwaysInvertedInspection.java
+++ b/plugins/InspectionGadgets/src/com/intellij/codeInspection/booleanIsAlwaysInverted/BooleanMethodIsAlwaysInvertedInspection.java
@@ -87,7 +87,8 @@
}
@Override
- protected boolean queryExternalUsagesRequests(@NotNull final RefManager manager, @NotNull final GlobalJavaInspectionContext context,
+ protected boolean queryExternalUsagesRequests(@NotNull final RefManager manager,
+ @NotNull final GlobalJavaInspectionContext context,
@NotNull final ProblemDescriptionsProcessor descriptionsProcessor) {
manager.iterate(new RefJavaVisitor() {
@Override
diff --git a/plugins/InspectionGadgets/src/com/siyeh/ig/dataflow/UnnecessaryLocalVariableInspection.java b/plugins/InspectionGadgets/src/com/siyeh/ig/dataflow/UnnecessaryLocalVariableInspection.java
index 483e9f3..5da5ba2 100644
--- a/plugins/InspectionGadgets/src/com/siyeh/ig/dataflow/UnnecessaryLocalVariableInspection.java
+++ b/plugins/InspectionGadgets/src/com/siyeh/ig/dataflow/UnnecessaryLocalVariableInspection.java
@@ -25,6 +25,7 @@
import com.siyeh.ig.BaseInspectionVisitor;
import com.siyeh.ig.InspectionGadgetsFix;
import com.siyeh.ig.fixes.InlineVariableFix;
+import com.siyeh.ig.psiutils.ParenthesesUtils;
import com.siyeh.ig.psiutils.VariableAccessUtils;
import org.jetbrains.annotations.NotNull;
@@ -114,7 +115,7 @@
}
private boolean isCopyVariable(PsiVariable variable) {
- final PsiExpression initializer = variable.getInitializer();
+ final PsiExpression initializer = ParenthesesUtils.stripParentheses(variable.getInitializer());
if (!(initializer instanceof PsiReferenceExpression)) {
return false;
}
@@ -126,6 +127,9 @@
if (!(referent instanceof PsiLocalVariable || referent instanceof PsiParameter)) {
return false;
}
+ if (!(referent instanceof PsiResourceVariable) && variable instanceof PsiResourceVariable) {
+ return false;
+ }
final PsiCodeBlock containingScope = PsiTreeUtil.getParentOfType(variable, PsiCodeBlock.class);
if (containingScope == null) {
return false;
@@ -169,7 +173,7 @@
return false;
}
final PsiReturnStatement returnStatement = (PsiReturnStatement)nextStatement;
- final PsiExpression returnValue = returnStatement.getReturnValue();
+ final PsiExpression returnValue = ParenthesesUtils.stripParentheses(returnStatement.getReturnValue());
if (!(returnValue instanceof PsiReferenceExpression)) {
return false;
}
@@ -178,10 +182,7 @@
if (referent == null || !referent.equals(variable)) {
return false;
}
- if (isVariableUsedInFollowingDeclarations(variable, declarationStatement)) {
- return false;
- }
- return true;
+ return !isVariableUsedInFollowingDeclarations(variable, declarationStatement);
}
private boolean isImmediatelyThrown(PsiVariable variable) {
@@ -206,7 +207,7 @@
return false;
}
final PsiThrowStatement throwStatement = (PsiThrowStatement)nextStatement;
- final PsiExpression returnValue = throwStatement.getException();
+ final PsiExpression returnValue = ParenthesesUtils.stripParentheses(throwStatement.getException());
if (!(returnValue instanceof PsiReferenceExpression)) {
return false;
}
@@ -214,10 +215,7 @@
if (referent == null || !referent.equals(variable)) {
return false;
}
- if (isVariableUsedInFollowingDeclarations(variable, declarationStatement)) {
- return false;
- }
- return true;
+ return !isVariableUsedInFollowingDeclarations(variable, declarationStatement);
}
private boolean isImmediatelyAssigned(PsiVariable variable) {
@@ -253,7 +251,7 @@
if (tokenType != JavaTokenType.EQ) {
return false;
}
- final PsiExpression rhs = assignmentExpression.getRExpression();
+ final PsiExpression rhs = ParenthesesUtils.stripParentheses(assignmentExpression.getRExpression());
if (!(rhs instanceof PsiReferenceExpression)) {
return false;
}
@@ -305,7 +303,7 @@
continue;
}
final PsiVariable nextVariable = (PsiVariable)declaration;
- final PsiExpression initializer = nextVariable.getInitializer();
+ final PsiExpression initializer = ParenthesesUtils.stripParentheses(nextVariable.getInitializer());
if (!referenceFound && initializer instanceof PsiReferenceExpression) {
final PsiReferenceExpression referenceExpression = (PsiReferenceExpression)initializer;
final PsiElement referent = referenceExpression.resolve();
diff --git a/plugins/InspectionGadgets/src/com/siyeh/ig/errorhandling/UnusedCatchParameterInspection.java b/plugins/InspectionGadgets/src/com/siyeh/ig/errorhandling/UnusedCatchParameterInspection.java
index 7d68417..d217e84 100644
--- a/plugins/InspectionGadgets/src/com/siyeh/ig/errorhandling/UnusedCatchParameterInspection.java
+++ b/plugins/InspectionGadgets/src/com/siyeh/ig/errorhandling/UnusedCatchParameterInspection.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2003-2012 Dave Griffith, Bas Leijdekkers
+ * Copyright 2003-2013 Dave Griffith, Bas Leijdekkers
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -17,6 +17,7 @@
import com.intellij.codeInspection.ui.MultipleCheckboxOptionsPanel;
import com.intellij.psi.*;
+import com.intellij.psi.util.PsiUtil;
import com.siyeh.InspectionGadgetsBundle;
import com.siyeh.ig.BaseInspection;
import com.siyeh.ig.BaseInspectionVisitor;
@@ -108,7 +109,6 @@
return;
}
@NonNls final String parameterName = parameter.getName();
- final boolean namedIgnore = parameterName.contains("ignore");
final PsiCodeBlock block = section.getCatchBlock();
if (block == null) {
return;
@@ -124,6 +124,7 @@
final CatchParameterUsedVisitor visitor =
new CatchParameterUsedVisitor(parameter);
block.accept(visitor);
+ final boolean namedIgnore = PsiUtil.isIgnoredName(parameterName);
if (visitor.isUsed()) {
if (namedIgnore) {
registerVariableError(parameter, Boolean.valueOf(true));
diff --git a/plugins/InspectionGadgets/src/com/siyeh/ig/fixes/InlineVariableFix.java b/plugins/InspectionGadgets/src/com/siyeh/ig/fixes/InlineVariableFix.java
index 91f20b5..5bdf57b 100644
--- a/plugins/InspectionGadgets/src/com/siyeh/ig/fixes/InlineVariableFix.java
+++ b/plugins/InspectionGadgets/src/com/siyeh/ig/fixes/InlineVariableFix.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2003-2011 Dave Griffith, Bas Leijdekkers
+ * Copyright 2003-2013 Dave Griffith, Bas Leijdekkers
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -18,10 +18,8 @@
import com.intellij.codeInspection.ProblemDescriptor;
import com.intellij.openapi.project.Project;
import com.intellij.psi.*;
-import com.intellij.psi.search.LocalSearchScope;
import com.intellij.psi.search.searches.ReferencesSearch;
-import com.intellij.psi.util.PsiTreeUtil;
-import com.intellij.util.Query;
+import com.intellij.refactoring.util.InlineUtil;
import com.siyeh.InspectionGadgetsBundle;
import com.siyeh.ig.InspectionGadgetsFix;
import com.siyeh.ig.psiutils.HighlightUtils;
@@ -41,36 +39,16 @@
@Override
public void doFix(@NotNull final Project project, final ProblemDescriptor descriptor) {
final PsiElement nameElement = descriptor.getPsiElement();
- final PsiLocalVariable variable =
- (PsiLocalVariable)nameElement.getParent();
- PsiExpression initializer = variable.getInitializer();
+ final PsiLocalVariable variable = (PsiLocalVariable)nameElement.getParent();
+ final PsiExpression initializer = variable.getInitializer();
if (initializer == null) {
return;
}
- if (initializer instanceof PsiArrayInitializerExpression) {
- final PsiElementFactory factory =
- JavaPsiFacade.getElementFactory(project);
- final PsiType type = initializer.getType();
- final String typeText;
- if (type == null) {
- typeText = "";
- }
- else {
- typeText = type.getCanonicalText();
- }
- initializer = factory.createExpressionFromText("new " + typeText +
- initializer.getText(), variable);
- }
- final PsiMember member =
- PsiTreeUtil.getParentOfType(variable, PsiMember.class);
- final Query<PsiReference> search =
- ReferencesSearch.search(variable, new LocalSearchScope(member));
+ final Collection<PsiReference> references = ReferencesSearch.search(variable).findAll();
final Collection<PsiElement> replacedElements = new ArrayList<PsiElement>();
- final Collection<PsiReference> references = search.findAll();
for (PsiReference reference : references) {
- final PsiElement replacedElement =
- reference.getElement().replace(initializer);
- replacedElements.add(replacedElement);
+ final PsiExpression expression = InlineUtil.inlineVariable(variable, initializer, (PsiJavaCodeReferenceElement)reference);
+ replacedElements.add(expression);
}
HighlightUtils.highlightElements(replacedElements);
variable.delete();
diff --git a/plugins/InspectionGadgets/src/com/siyeh/ig/logging/StringConcatenationArgumentToLogCallInspection.java b/plugins/InspectionGadgets/src/com/siyeh/ig/logging/StringConcatenationArgumentToLogCallInspection.java
index 4c96475..5169392 100644
--- a/plugins/InspectionGadgets/src/com/siyeh/ig/logging/StringConcatenationArgumentToLogCallInspection.java
+++ b/plugins/InspectionGadgets/src/com/siyeh/ig/logging/StringConcatenationArgumentToLogCallInspection.java
@@ -76,13 +76,12 @@
private static class StringConcatenationArgumentToLogCallFix extends InspectionGadgetsFix {
-
public StringConcatenationArgumentToLogCallFix() {}
@NotNull
@Override
public String getName() {
- return InspectionGadgetsBundle.message("string.concatenation.in.format.call.quickfix");
+ return InspectionGadgetsBundle.message("string.concatenation.argument.to.log.call.quickfix");
}
@Override
diff --git a/plugins/InspectionGadgets/src/com/siyeh/ig/naming/ConventionInspection.java b/plugins/InspectionGadgets/src/com/siyeh/ig/naming/ConventionInspection.java
index 10d8135..ddba1dc 100644
--- a/plugins/InspectionGadgets/src/com/siyeh/ig/naming/ConventionInspection.java
+++ b/plugins/InspectionGadgets/src/com/siyeh/ig/naming/ConventionInspection.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2003-2011 Dave Griffith, Bas Leijdekkers
+ * Copyright 2003-2013 Dave Griffith, Bas Leijdekkers
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -44,8 +44,6 @@
public abstract class ConventionInspection extends BaseInspection {
/**
- * public fields for the DefaultJDomExternalizer
- *
* @noinspection PublicField
*/
public String m_regex = getDefaultRegex();
@@ -83,7 +81,7 @@
if (length < m_minLength) {
return false;
}
- if (length > m_maxLength) {
+ if (m_maxLength > 0 && length > m_maxLength) {
return false;
}
if (HardcodedMethodConstants.SERIAL_VERSION_UID.equals(name)) {
@@ -99,8 +97,6 @@
m_regexPattern = Pattern.compile(m_regex);
}
- private static final int REGEX_COLUMN_COUNT = 25;
-
public Collection<? extends JComponent> createExtraOptions() {
return Collections.emptyList();
}
@@ -110,42 +106,37 @@
final GridBagLayout layout = new GridBagLayout();
final JPanel panel = new JPanel(layout);
- final JLabel patternLabel = new JLabel(
- InspectionGadgetsBundle.message("convention.pattern.option"));
- final JLabel minLengthLabel = new JLabel(
- InspectionGadgetsBundle.message("convention.min.length.option"));
- final JLabel maxLengthLabel = new JLabel(
- InspectionGadgetsBundle.message("convention.max.length.option"));
+ final JLabel patternLabel = new JLabel(InspectionGadgetsBundle.message("convention.pattern.option"));
+ final JLabel minLengthLabel = new JLabel(InspectionGadgetsBundle.message("convention.min.length.option"));
+ final JLabel maxLengthLabel = new JLabel(InspectionGadgetsBundle.message("convention.max.length.option"));
final NumberFormat numberFormat = NumberFormat.getIntegerInstance();
numberFormat.setParseIntegerOnly(true);
numberFormat.setMinimumIntegerDigits(1);
- numberFormat.setMaximumIntegerDigits(2);
- final InternationalFormatter formatter =
- new InternationalFormatter(numberFormat);
+ numberFormat.setMaximumIntegerDigits(3);
+ final InternationalFormatter formatter = new InternationalFormatter(numberFormat);
formatter.setAllowsInvalid(true);
- formatter.setCommitsOnValidEdit(true);
+ formatter.setCommitsOnValidEdit(false);
+ formatter.setMinimum(Integer.valueOf(0));
+ formatter.setMaximum(Integer.valueOf(999));
- final JFormattedTextField minLengthField =
- new JFormattedTextField(formatter);
+ final JFormattedTextField minLengthField = new JFormattedTextField(formatter);
final Font panelFont = panel.getFont();
minLengthField.setFont(panelFont);
minLengthField.setValue(Integer.valueOf(m_minLength));
minLengthField.setColumns(2);
UIUtil.fixFormattedField(minLengthField);
- final JFormattedTextField maxLengthField =
- new JFormattedTextField(formatter);
+ final JFormattedTextField maxLengthField = new JFormattedTextField(formatter);
maxLengthField.setFont(panelFont);
maxLengthField.setValue(Integer.valueOf(m_maxLength));
maxLengthField.setColumns(2);
UIUtil.fixFormattedField(minLengthField);
- final JFormattedTextField regexField =
- new JFormattedTextField(new RegExFormatter());
+ final JFormattedTextField regexField = new JFormattedTextField(new RegExFormatter());
regexField.setFont(panelFont);
regexField.setValue(m_regexPattern);
- regexField.setColumns(REGEX_COLUMN_COUNT);
+ regexField.setColumns(25);
regexField.setInputVerifier(new RegExInputVerifier());
regexField.setFocusLostBehavior(JFormattedTextField.COMMIT);
UIUtil.fixFormattedField(minLengthField);
@@ -212,8 +203,7 @@
constraints.insets.right = 0;
panel.add(maxLengthField, constraints);
- final Collection<? extends JComponent> extraOptions =
- createExtraOptions();
+ final Collection<? extends JComponent> extraOptions = createExtraOptions();
constraints.gridx = 0;
constraints.gridwidth = 2;
for (JComponent extraOption : extraOptions) {
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/AbsoluteAlignmentInUserInterface.html b/plugins/InspectionGadgets/src/inspectionDescriptions/AbsoluteAlignmentInUserInterface.html
index ad23d15..5acbdb90 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/AbsoluteAlignmentInUserInterface.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/AbsoluteAlignmentInUserInterface.html
@@ -4,6 +4,6 @@
relative alignment, because it respects locale component orientation settings.
<!-- tooltip end -->
<p>
-<small>New in 11, Powered by InspectionGadgets</small>
+<small>New in 11</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/AbstractClassExtendsConcreteClass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/AbstractClassExtendsConcreteClass.html
index f7e86c1..cefaccd 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/AbstractClassExtendsConcreteClass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/AbstractClassExtendsConcreteClass.html
@@ -3,6 +3,6 @@
Reports abstract classes which extend concrete classes.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/AbstractClassNeverImplemented.html b/plugins/InspectionGadgets/src/inspectionDescriptions/AbstractClassNeverImplemented.html
index ce076a4..1cce35b 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/AbstractClassNeverImplemented.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/AbstractClassNeverImplemented.html
@@ -4,6 +4,6 @@
concrete subclasses.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/AbstractClassWithOnlyOneDirectInheritor.html b/plugins/InspectionGadgets/src/inspectionDescriptions/AbstractClassWithOnlyOneDirectInheritor.html
index 41f07bb..f4c4d23 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/AbstractClassWithOnlyOneDirectInheritor.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/AbstractClassWithOnlyOneDirectInheritor.html
@@ -9,6 +9,6 @@
the total footprint of the application. Consider merging the abstract class with its inheritor.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/AbstractClassWithoutAbstractMethods.html b/plugins/InspectionGadgets/src/inspectionDescriptions/AbstractClassWithoutAbstractMethods.html
index 39fff09..cd3a13e 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/AbstractClassWithoutAbstractMethods.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/AbstractClassWithoutAbstractMethods.html
@@ -3,6 +3,6 @@
Reports abstract classes without abstract methods.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/AbstractMethodCallInConstructor.html b/plugins/InspectionGadgets/src/inspectionDescriptions/AbstractMethodCallInConstructor.html
index 2910142..95956bf 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/AbstractMethodCallInConstructor.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/AbstractMethodCallInConstructor.html
@@ -12,6 +12,6 @@
<i>Abstract method called during object construction</i> report overlapping problem sets and only one should be enabled at a time
to prevent duplicate warnings.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/AbstractMethodOverridesAbstractMethod.html b/plugins/InspectionGadgets/src/inspectionDescriptions/AbstractMethodOverridesAbstractMethod.html
index 4c12187..3664524 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/AbstractMethodOverridesAbstractMethod.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/AbstractMethodOverridesAbstractMethod.html
@@ -9,6 +9,6 @@
<p>
Use the second checkbox to ignore any abstract methods that have one or more annotations that are not present on their super method.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/AbstractMethodOverridesConcreteMethod.html b/plugins/InspectionGadgets/src/inspectionDescriptions/AbstractMethodOverridesConcreteMethod.html
index 9a2e3bd..b0d8233 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/AbstractMethodOverridesConcreteMethod.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/AbstractMethodOverridesConcreteMethod.html
@@ -5,6 +5,6 @@
by this inspection.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/AbstractMethodWithMissingImplementations.html b/plugins/InspectionGadgets/src/inspectionDescriptions/AbstractMethodWithMissingImplementations.html
index 334f803..486da338 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/AbstractMethodWithMissingImplementations.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/AbstractMethodWithMissingImplementations.html
@@ -5,6 +5,6 @@
reports the problem at the point of the abstract method.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/AccessToNonThreadSafeStaticFieldFromInstance.html b/plugins/InspectionGadgets/src/inspectionDescriptions/AccessToNonThreadSafeStaticFieldFromInstance.html
index 6ecb309..2288f1b 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/AccessToNonThreadSafeStaticFieldFromInstance.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/AccessToNonThreadSafeStaticFieldFromInstance.html
@@ -6,6 +6,6 @@
multiple threads, which can lead to unspecified side effects.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/AccessToStaticFieldLockedOnInstance.html b/plugins/InspectionGadgets/src/inspectionDescriptions/AccessToStaticFieldLockedOnInstance.html
index 7231f59..7ecfdae 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/AccessToStaticFieldLockedOnInstance.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/AccessToStaticFieldLockedOnInstance.html
@@ -8,6 +8,6 @@
<p>
Use the table below to specify classes to ignore. Any static fields of the types specified will be ignored by this inspection.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/AmbiguousFieldAccess.html b/plugins/InspectionGadgets/src/inspectionDescriptions/AmbiguousFieldAccess.html
index 50f4848..67f0068 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/AmbiguousFieldAccess.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/AmbiguousFieldAccess.html
@@ -19,6 +19,6 @@
</code></pre>
<!-- tooltip end -->
<p>
-<small>New in 11, Powered by InspectionGadgets</small>
+<small>New in 11</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/AmbiguousMethodCall.html b/plugins/InspectionGadgets/src/inspectionDescriptions/AmbiguousMethodCall.html
index 82b3a24..ef7dc8a 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/AmbiguousMethodCall.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/AmbiguousMethodCall.html
@@ -8,6 +8,6 @@
<b>super</b> qualifier to the method call.
<!-- tooltip end -->
<p>
-<small>New in 8, Powered by InspectionGadgets</small>
+<small>New in 8</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/Annotation.html b/plugins/InspectionGadgets/src/inspectionDescriptions/Annotation.html
index 9892b6e..0787d47 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/Annotation.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/Annotation.html
@@ -4,6 +4,6 @@
Annotations are not supported under Java 1.4 or earlier JVMs.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/AnnotationClass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/AnnotationClass.html
index 6bad5d4..800e759 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/AnnotationClass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/AnnotationClass.html
@@ -4,6 +4,6 @@
Such interfaces are not supported under Java 1.4 or earlier JVMs.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/AnnotationNamingConvention.html b/plugins/InspectionGadgets/src/inspectionDescriptions/AnnotationNamingConvention.html
index db2187b..a99f2d9 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/AnnotationNamingConvention.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/AnnotationNamingConvention.html
@@ -5,8 +5,8 @@
<!-- tooltip end -->
<p>
Use the fields below to specify minimum length, maximum length and regular expression expected for annotation names.
-(Regular expressions are in standard <b>java.util.regex</b> format.)
+Specify <b>0</b> to not check the length of names. Regular expressions are in standard <b>java.util.regex</b> format.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/AnonymousClassComplexity.html b/plugins/InspectionGadgets/src/inspectionDescriptions/AnonymousClassComplexity.html
index ba9645b..f170492 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/AnonymousClassComplexity.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/AnonymousClassComplexity.html
@@ -9,6 +9,6 @@
<p>
Use the field below to specify the maximum complexity a class is allowed to have.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/AnonymousClassMethodCount.html b/plugins/InspectionGadgets/src/inspectionDescriptions/AnonymousClassMethodCount.html
index 562dcd0..b3859bf 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/AnonymousClassMethodCount.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/AnonymousClassMethodCount.html
@@ -7,6 +7,6 @@
<p>
Use the field below to specify the maximum number of methods an anonymous inner <b>class</b> is allowed to have.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/AnonymousClassVariableHidesContainingMethodVariable.html b/plugins/InspectionGadgets/src/inspectionDescriptions/AnonymousClassVariableHidesContainingMethodVariable.html
index fd91e73..36ebac3 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/AnonymousClassVariableHidesContainingMethodVariable.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/AnonymousClassVariableHidesContainingMethodVariable.html
@@ -4,6 +4,6 @@
Such a variable name may be confusing.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/AnonymousInnerClass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/AnonymousInnerClass.html
index 48a5568..238300f 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/AnonymousInnerClass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/AnonymousInnerClass.html
@@ -4,6 +4,6 @@
Some code standards discourage the use of anonymous inner classes.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/AnonymousInnerClassMayBeStatic.html b/plugins/InspectionGadgets/src/inspectionDescriptions/AnonymousInnerClassMayBeStatic.html
index 800c584..9311966 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/AnonymousInnerClassMayBeStatic.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/AnonymousInnerClassMayBeStatic.html
@@ -8,6 +8,6 @@
its enclosing class instance or local variables. A static inner class uses slightly less memory.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ArchaicSystemPropertyAccess.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ArchaicSystemPropertyAccess.html
index 593c93c..3a15c30 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ArchaicSystemPropertyAccess.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ArchaicSystemPropertyAccess.html
@@ -7,6 +7,6 @@
for other purposes, such as string parsing.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ArrayEquality.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ArrayEquality.html
index 253ad5b..2b0e729 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ArrayEquality.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ArrayEquality.html
@@ -4,6 +4,6 @@
rather than the <b>"java.util.Arrays.equals()"</b> method.
<!-- tooltip end -->
<p>
-<small>New in 10.5, Powered by InspectionGadgets</small>
+<small>New in 10.5</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ArrayEquals.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ArrayEquals.html
index 7fa82e5..ca95126 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ArrayEquals.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ArrayEquals.html
@@ -8,6 +8,6 @@
multi-dimensional arrays.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ArrayHashCode.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ArrayHashCode.html
index 2c439ad..bf03e45 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ArrayHashCode.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ArrayHashCode.html
@@ -7,6 +7,6 @@
code of a multi-dimensional array.
<!-- tooltip end -->
<p>
-<small>New in 10.5, Powered by InspectionGadgets</small>
+<small>New in 10.5</small>
</body>
</html>
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ArrayLengthInLoopCondition.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ArrayLengthInLoopCondition.html
index 00dcf39..152c270 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ArrayLengthInLoopCondition.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ArrayLengthInLoopCondition.html
@@ -8,6 +8,6 @@
have adverse performance implications.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ArraysAsListWithZeroOrOneArgument.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ArraysAsListWithZeroOrOneArgument.html
index 1402285..1ac168e 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ArraysAsListWithZeroOrOneArgument.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ArraysAsListWithZeroOrOneArgument.html
@@ -4,6 +4,6 @@
with either a call to <b>Collections.singletonList()</b> or <b>Collections.emptyList()</b> which will save some memory.
<!-- tooltip end -->
<p>
-<small>New in 12, Powered by InspectionGadgets</small>
+<small>New in 12</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/AssertAsName.html b/plugins/InspectionGadgets/src/inspectionDescriptions/AssertAsName.html
index 20150c4..f8147a6 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/AssertAsName.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/AssertAsName.html
@@ -5,6 +5,6 @@
earlier JVMs, but will cause problems under Java 1.4 or later.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/AssertEqualsBetweenInconvertibleTypes.html b/plugins/InspectionGadgets/src/inspectionDescriptions/AssertEqualsBetweenInconvertibleTypes.html
index 57aa66e..7ccf889 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/AssertEqualsBetweenInconvertibleTypes.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/AssertEqualsBetweenInconvertibleTypes.html
@@ -5,6 +5,6 @@
types. While such a call might theoretically be useful, most likely it represents a bug.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/AssertEqualsCalledOnArray.html b/plugins/InspectionGadgets/src/inspectionDescriptions/AssertEqualsCalledOnArray.html
index 29e2db6..515782b 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/AssertEqualsCalledOnArray.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/AssertEqualsCalledOnArray.html
@@ -5,6 +5,6 @@
<b>assertArrayEquals()</b> methods.
<!-- tooltip end -->
<p>
-<small>New in 10, Powered by InspectionGadgets</small>
+<small>New in 10</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/AssertEqualsMayBeAssertSame.html b/plugins/InspectionGadgets/src/inspectionDescriptions/AssertEqualsMayBeAssertSame.html
index 7be047f..e028494 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/AssertEqualsMayBeAssertSame.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/AssertEqualsMayBeAssertSame.html
@@ -7,6 +7,6 @@
the <b>equals()</b> method.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/AssertStatement.html b/plugins/InspectionGadgets/src/inspectionDescriptions/AssertStatement.html
index 15092a3..2e24abe2 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/AssertStatement.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/AssertStatement.html
@@ -4,6 +4,6 @@
Such statements are not supported under Java 1.3 or earlier JVMs.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/AssertWithSideEffects.html b/plugins/InspectionGadgets/src/inspectionDescriptions/AssertWithSideEffects.html
index 7b179f6..efa9ad5 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/AssertWithSideEffects.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/AssertWithSideEffects.html
@@ -8,6 +8,6 @@
for any modifications of fields.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/AssertsWithoutMessages.html b/plugins/InspectionGadgets/src/inspectionDescriptions/AssertsWithoutMessages.html
index 67faa0d..bf5232e 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/AssertsWithoutMessages.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/AssertsWithoutMessages.html
@@ -4,6 +4,6 @@
An error message on assertion failure may help clarify the test case's intent.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/AssignmentToCatchBlockParameter.html b/plugins/InspectionGadgets/src/inspectionDescriptions/AssignmentToCatchBlockParameter.html
index e479017..1d3e5df 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/AssignmentToCatchBlockParameter.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/AssignmentToCatchBlockParameter.html
@@ -4,6 +4,6 @@
While occasionally intended, this construct can be confusing.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/AssignmentToCollectionFieldFromParameter.html b/plugins/InspectionGadgets/src/inspectionDescriptions/AssignmentToCollectionFieldFromParameter.html
index 0662276..d7aef76 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/AssignmentToCollectionFieldFromParameter.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/AssignmentToCollectionFieldFromParameter.html
@@ -6,6 +6,6 @@
reasons, this construct is inherently bug-prone.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/AssignmentToDateFieldFromParameter.html b/plugins/InspectionGadgets/src/inspectionDescriptions/AssignmentToDateFieldFromParameter.html
index cc1003b..eaba3a3 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/AssignmentToDateFieldFromParameter.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/AssignmentToDateFieldFromParameter.html
@@ -8,6 +8,6 @@
reasons, this construct is inherently bug-prone.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/AssignmentToForLoopParameter.html b/plugins/InspectionGadgets/src/inspectionDescriptions/AssignmentToForLoopParameter.html
index 94c4d40..e10c79b 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/AssignmentToForLoopParameter.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/AssignmentToForLoopParameter.html
@@ -5,6 +5,6 @@
While occasionally intended, this construct can be extremely confusing, and is often the result of a typo.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/AssignmentToMethodParameter.html b/plugins/InspectionGadgets/src/inspectionDescriptions/AssignmentToMethodParameter.html
index 9139a9d..ed0c956 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/AssignmentToMethodParameter.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/AssignmentToMethodParameter.html
@@ -5,6 +5,6 @@
While occasionally intended, this construct can be extremely confusing, and is often the result of a typo.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/AssignmentToNull.html b/plugins/InspectionGadgets/src/inspectionDescriptions/AssignmentToNull.html
index 0ddd836..211c26b 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/AssignmentToNull.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/AssignmentToNull.html
@@ -10,6 +10,6 @@
<p>
Use the checkbox below to ignore assignments to fields.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/AssignmentToStaticFieldFromInstanceMethod.html b/plugins/InspectionGadgets/src/inspectionDescriptions/AssignmentToStaticFieldFromInstanceMethod.html
index 9e049f3..2aa70b8 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/AssignmentToStaticFieldFromInstanceMethod.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/AssignmentToStaticFieldFromInstanceMethod.html
@@ -6,6 +6,6 @@
<b>static</b>.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/AssignmentToSuperclassField.html b/plugins/InspectionGadgets/src/inspectionDescriptions/AssignmentToSuperclassField.html
index 5a4a842..c9708f2 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/AssignmentToSuperclassField.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/AssignmentToSuperclassField.html
@@ -4,6 +4,6 @@
superclass to initialize the fields.
<!-- tooltip end -->
<p>
-<small>New in 12.1, Powered by InspectionGadgets</small>
+<small>New in 12.1</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/AssignmentUsedAsCondition.html b/plugins/InspectionGadgets/src/inspectionDescriptions/AssignmentUsedAsCondition.html
index 6bf27a1..709f163 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/AssignmentUsedAsCondition.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/AssignmentUsedAsCondition.html
@@ -7,6 +7,6 @@
(<b>=</b> instead of <b>==</b>).
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/AutoBoxing.html b/plugins/InspectionGadgets/src/inspectionDescriptions/AutoBoxing.html
index 947a583..c089a3e 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/AutoBoxing.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/AutoBoxing.html
@@ -4,6 +4,6 @@
Code which relies on auto-boxing will not work in pre-Java 5.0 environments.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/AutoUnboxing.html b/plugins/InspectionGadgets/src/inspectionDescriptions/AutoUnboxing.html
index 62ace95..484b96e 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/AutoUnboxing.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/AutoUnboxing.html
@@ -4,6 +4,6 @@
Code which relies on auto-boxing will not work in pre-Java 5.0 environments.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/AwaitNotInLoop.html b/plugins/InspectionGadgets/src/inspectionDescriptions/AwaitNotInLoop.html
index be1242a..a243d02 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/AwaitNotInLoop.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/AwaitNotInLoop.html
@@ -6,6 +6,6 @@
returns. A loop is the clearest way to achieve this.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/AwaitWithoutCorrespondingSignal.html b/plugins/InspectionGadgets/src/inspectionDescriptions/AwaitWithoutCorrespondingSignal.html
index 330165e..3924366 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/AwaitWithoutCorrespondingSignal.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/AwaitWithoutCorrespondingSignal.html
@@ -6,6 +6,6 @@
can be found. Only calls which target fields of the current class are reported by this inspection.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/BadExceptionCaught.html b/plugins/InspectionGadgets/src/inspectionDescriptions/BadExceptionCaught.html
index 46d30f4..41b1fa8 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/BadExceptionCaught.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/BadExceptionCaught.html
@@ -9,6 +9,6 @@
<p>
Use the list below to specify which exceptions should be flagged by this inspection.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/BadExceptionDeclared.html b/plugins/InspectionGadgets/src/inspectionDescriptions/BadExceptionDeclared.html
index d0d8e4a..775a9b5 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/BadExceptionDeclared.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/BadExceptionDeclared.html
@@ -10,6 +10,6 @@
<p>
Use the second checkbox below to ignore exceptions declared on methods which override a library method.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/BadExceptionThrown.html b/plugins/InspectionGadgets/src/inspectionDescriptions/BadExceptionThrown.html
index 4d8043e..3f4d8e7 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/BadExceptionThrown.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/BadExceptionThrown.html
@@ -8,6 +8,6 @@
<p>
Use the list below to specify which exceptions should be flagged by this inspection.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/BadOddness.html b/plugins/InspectionGadgets/src/inspectionDescriptions/BadOddness.html
index 809439d..506960c 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/BadOddness.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/BadOddness.html
@@ -6,6 +6,6 @@
<code><pre>x % 2 != 0</pre></code> or: <code><pre>(x & 1) == 1</pre></code> instead.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/BeforeClassOrAfterClassIsPublicStaticVoidNoArg.html b/plugins/InspectionGadgets/src/inspectionDescriptions/BeforeClassOrAfterClassIsPublicStaticVoidNoArg.html
index c7521fa..ee9e9f5 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/BeforeClassOrAfterClassIsPublicStaticVoidNoArg.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/BeforeClassOrAfterClassIsPublicStaticVoidNoArg.html
@@ -6,6 +6,6 @@
Such methods are easy to create inadvertently, and will not be executed by JUnit tests runners.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/BeforeOrAfterIsPublicVoidNoArg.html b/plugins/InspectionGadgets/src/inspectionDescriptions/BeforeOrAfterIsPublicVoidNoArg.html
index 95abe77..114d465 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/BeforeOrAfterIsPublicVoidNoArg.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/BeforeOrAfterIsPublicVoidNoArg.html
@@ -6,6 +6,6 @@
Such methods are easy to create inadvertently, and will not be executed by JUnit tests runners.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/BigDecimalEquals.html b/plugins/InspectionGadgets/src/inspectionDescriptions/BigDecimalEquals.html
index ba70c2f..cbdb592 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/BigDecimalEquals.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/BigDecimalEquals.html
@@ -8,6 +8,6 @@
use <b>.compareTo()</b> instead.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/BooleanConstructor.html b/plugins/InspectionGadgets/src/inspectionDescriptions/BooleanConstructor.html
index 8721643..d8602ca 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/BooleanConstructor.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/BooleanConstructor.html
@@ -5,6 +5,6 @@
and may cause performance problems if done often enough.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/BooleanMethodIsAlwaysInverted.html b/plugins/InspectionGadgets/src/inspectionDescriptions/BooleanMethodIsAlwaysInverted.html
index 05186ba..836dda5 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/BooleanMethodIsAlwaysInverted.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/BooleanMethodIsAlwaysInverted.html
@@ -21,6 +21,6 @@
</pre></code>
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/BooleanMethodNameMustStartWithQuestion.html b/plugins/InspectionGadgets/src/inspectionDescriptions/BooleanMethodNameMustStartWithQuestion.html
index d10fa44..a65d255 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/BooleanMethodNameMustStartWithQuestion.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/BooleanMethodNameMustStartWithQuestion.html
@@ -6,6 +6,6 @@
<p>
Use the list below to specify acceptable question words to start boolean method names with.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/BooleanVariableAlwaysNegated.html b/plugins/InspectionGadgets/src/inspectionDescriptions/BooleanVariableAlwaysNegated.html
index bb55c91..20b9f27 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/BooleanVariableAlwaysNegated.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/BooleanVariableAlwaysNegated.html
@@ -4,6 +4,6 @@
when its value is used.
<!-- tooltip end -->
<p>
-<small>New in 11, Powered by InspectionGadgets</small>
+<small>New in 11</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/BoxingBoxedValue.html b/plugins/InspectionGadgets/src/inspectionDescriptions/BoxingBoxedValue.html
index 2b88679..20ba73d 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/BoxingBoxedValue.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/BoxingBoxedValue.html
@@ -6,6 +6,6 @@
problems.
<!-- tooltip end -->
<p>
-<small>New in 10.0.2, Powered by InspectionGadgets</small>
+<small>New in 10.0.2</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/BreakStatement.html b/plugins/InspectionGadgets/src/inspectionDescriptions/BreakStatement.html
index 4e53e59..77e94f6 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/BreakStatement.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/BreakStatement.html
@@ -5,6 +5,6 @@
<b>break</b> statements complicate refactoring, and can be confusing.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/BreakStatementWithLabel.html b/plugins/InspectionGadgets/src/inspectionDescriptions/BreakStatementWithLabel.html
index ed4169d..aaf5cd7 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/BreakStatementWithLabel.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/BreakStatementWithLabel.html
@@ -4,6 +4,6 @@
Labeled <b>break</b> statements complicate refactoring, and can be confusing.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/BusyWait.html b/plugins/InspectionGadgets/src/inspectionDescriptions/BusyWait.html
index c426a3a..1a248a4 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/BusyWait.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/BusyWait.html
@@ -5,6 +5,6 @@
as busy-waiting threads do not release locked resources.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/CStyleArrayDeclaration.html b/plugins/InspectionGadgets/src/inspectionDescriptions/CStyleArrayDeclaration.html
index 6e288e2..6b8f3ff 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/CStyleArrayDeclaration.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/CStyleArrayDeclaration.html
@@ -4,6 +4,6 @@
rather than Java-style syntax, with the array indicator attached to the type.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/CachedNumberConstructorCall.html b/plugins/InspectionGadgets/src/inspectionDescriptions/CachedNumberConstructorCall.html
index 42d332f..7856a99 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/CachedNumberConstructorCall.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/CachedNumberConstructorCall.html
@@ -14,6 +14,6 @@
language level of 5.0 or higher.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/CallToNativeMethodWhileLocked.html b/plugins/InspectionGadgets/src/inspectionDescriptions/CallToNativeMethodWhileLocked.html
index 16879d7..dbc209f 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/CallToNativeMethodWhileLocked.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/CallToNativeMethodWhileLocked.html
@@ -5,6 +5,6 @@
an expensive context switch, and are best kept out of synchronized contexts, if possible.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/CallToSimpleGetterInClass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/CallToSimpleGetterInClass.html
index 4ba453d..24a7f7f 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/CallToSimpleGetterInClass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/CallToSimpleGetterInClass.html
@@ -10,6 +10,6 @@
Use the first option below to only report on getter calls on <b>this</b>, not on objects of the same type passed in as a parameter. Use
the second option below to only report when the getter is <b>private</b>.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/CallToSimpleSetterInClass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/CallToSimpleSetterInClass.html
index 862c15c..ce23be9 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/CallToSimpleSetterInClass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/CallToSimpleSetterInClass.html
@@ -10,6 +10,6 @@
Use the first option below to only report on setter calls on <b>this</b>, not on objects of the same type passed in as a parameter. Use
the second option below to only report when the setter is <b>private</b>.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/CallToStringConcatCanBeReplacedByOperator.html b/plugins/InspectionGadgets/src/inspectionDescriptions/CallToStringConcatCanBeReplacedByOperator.html
index e123a79..5c5555b 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/CallToStringConcatCanBeReplacedByOperator.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/CallToStringConcatCanBeReplacedByOperator.html
@@ -6,6 +6,6 @@
performance if the method was invoked on a constant with a constant argument.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/CastConflictsWithInstanceof.html b/plugins/InspectionGadgets/src/inspectionDescriptions/CastConflictsWithInstanceof.html
index 542027d..c78a2fb 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/CastConflictsWithInstanceof.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/CastConflictsWithInstanceof.html
@@ -6,6 +6,6 @@
result in a <b>java.lang.ClassCastException</b> at runtime.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/CastThatLosesPrecision.html b/plugins/InspectionGadgets/src/inspectionDescriptions/CastThatLosesPrecision.html
index c57cec6..fdb55f3 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/CastThatLosesPrecision.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/CastThatLosesPrecision.html
@@ -11,6 +11,6 @@
<b>read()</b> method of the class
<b>java.io.Reader</b> returns an <b>int</b>l
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/CastToConcreteClass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/CastToConcreteClass.html
index a4073a0..1ae4092 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/CastToConcreteClass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/CastToConcreteClass.html
@@ -9,6 +9,6 @@
<p>
Use the second checkbox below to have this inspection ignore casts inside <code>equals()</code> methods.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/CastToIncompatibleInterface.html b/plugins/InspectionGadgets/src/inspectionDescriptions/CastToIncompatibleInterface.html
index 6004938..a51c16c 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/CastToIncompatibleInterface.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/CastToIncompatibleInterface.html
@@ -7,6 +7,6 @@
result in a <b>java.lang.ClassCastException</b> at runtime.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/CaughtExceptionImmediatelyRethrown.html b/plugins/InspectionGadgets/src/inspectionDescriptions/CaughtExceptionImmediatelyRethrown.html
index 6a7fc72..5dc2a76 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/CaughtExceptionImmediatelyRethrown.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/CaughtExceptionImmediatelyRethrown.html
@@ -6,6 +6,6 @@
handling.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ChainedEquality.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ChainedEquality.html
index f94be23..493f9fa 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ChainedEquality.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ChainedEquality.html
@@ -4,6 +4,6 @@
Such comparisons are confusing.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ChainedMethodCall.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ChainedMethodCall.html
index 3585d15..19f9ad4 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ChainedMethodCall.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ChainedMethodCall.html
@@ -4,6 +4,6 @@
method call.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ChannelResource.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ChannelResource.html
index dd1c230..745f6e5 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ChannelResource.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ChannelResource.html
@@ -12,6 +12,6 @@
block. This style is less desirable because it is more verbose than opening a Channel
in front of a try block.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/CharUsedInArithmeticContext.html b/plugins/InspectionGadgets/src/inspectionDescriptions/CharUsedInArithmeticContext.html
index 4695875..581f711 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/CharUsedInArithmeticContext.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/CharUsedInArithmeticContext.html
@@ -4,6 +4,6 @@
addition or subtraction expressions.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/CharacterComparison.html b/plugins/InspectionGadgets/src/inspectionDescriptions/CharacterComparison.html
index be73f43..c44838e 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/CharacterComparison.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/CharacterComparison.html
@@ -4,6 +4,6 @@
environment, such comparisons are rarely correct.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/CheckForOutOfMemoryOnLargeArrayAllocation.html b/plugins/InspectionGadgets/src/inspectionDescriptions/CheckForOutOfMemoryOnLargeArrayAllocation.html
index aa9df54..63b0a74 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/CheckForOutOfMemoryOnLargeArrayAllocation.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/CheckForOutOfMemoryOnLargeArrayAllocation.html
@@ -12,6 +12,6 @@
Use the field below to specify the maximum number of elements to allow in
unchecked array allocations.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/CheckedExceptionClass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/CheckedExceptionClass.html
index 22e6b52..186226b 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/CheckedExceptionClass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/CheckedExceptionClass.html
@@ -5,6 +5,6 @@
classes be unchecked.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassComplexity.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassComplexity.html
index e57f1a7..d9b3c06 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassComplexity.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassComplexity.html
@@ -8,6 +8,6 @@
<p>
Use the field below to specify the maximum complexity a class is allowed to have.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassCoupling.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassCoupling.html
index 0c5c3d5..566ed5b 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassCoupling.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassCoupling.html
@@ -7,6 +7,6 @@
<p>
Use the field below to specify the maximum coupling a class is allowed to have.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassEscapesItsScope.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassEscapesItsScope.html
index 278e0d5..c4923ca 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassEscapesItsScope.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassEscapesItsScope.html
@@ -7,6 +7,6 @@
confusing, and make reuse difficult.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassInTopLevelPackage.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassInTopLevelPackage.html
index 7007266..c6263f2 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassInTopLevelPackage.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassInTopLevelPackage.html
@@ -3,6 +3,6 @@
Reports any classes which do not contain package declarations.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassIndependentOfModule.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassIndependentOfModule.html
index 7f936709..0fb377e 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassIndependentOfModule.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassIndependentOfModule.html
@@ -5,6 +5,6 @@
and may often profitably be moved.
<!-- tooltip end -->
<p>
-<small>New in 11, Powered by InspectionGadgets</small>
+<small>New in 11</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassInheritanceDepth.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassInheritanceDepth.html
index 037a604..ac152c1 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassInheritanceDepth.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassInheritanceDepth.html
@@ -7,6 +7,6 @@
<p>
Use the field below to specify the maximum inheritance depth a class is allowed to have.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassInitializer.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassInitializer.html
index 42c5d07..3f59450 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassInitializer.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassInitializer.html
@@ -7,6 +7,6 @@
resulting in obscure bugs.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassInitializerMayBeStatic.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassInitializerMayBeStatic.html
index 742edb4..d802c94 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassInitializerMayBeStatic.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassInitializerMayBeStatic.html
@@ -5,6 +5,6 @@
and non static fields.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassLoaderInstantiation.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassLoaderInstantiation.html
index cd4f1076..668c986 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassLoaderInstantiation.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassLoaderInstantiation.html
@@ -4,6 +4,6 @@
While often benign, any instantiations to <b>ClassLoader</b> should be closely examined in any security audit.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassMayBeInterface.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassMayBeInterface.html
index ae5f234..f322e19 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassMayBeInterface.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassMayBeInterface.html
@@ -7,6 +7,6 @@
that cannot themselves be interfaces.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassNameDiffersFromFileName.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassNameDiffersFromFileName.html
index 7b5ab45..c9ebc8e 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassNameDiffersFromFileName.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassNameDiffersFromFileName.html
@@ -6,6 +6,6 @@
software tools.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassNamePrefixedWithPackageName.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassNamePrefixedWithPackageName.html
index 4ac92fe..8958b9c 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassNamePrefixedWithPackageName.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassNamePrefixedWithPackageName.html
@@ -5,6 +5,6 @@
annoying.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassNameSameAsAncestorName.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassNameSameAsAncestorName.html
index 9b53c8b..2e29bcf 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassNameSameAsAncestorName.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassNameSameAsAncestorName.html
@@ -4,6 +4,6 @@
super classes (but in different packages). Such class name may be very confusing.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassNamingConvention.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassNamingConvention.html
index fb9919e..377c9e0 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassNamingConvention.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassNamingConvention.html
@@ -5,8 +5,8 @@
<!-- tooltip end -->
<p>
Use the fields below to specify minimum length, maximum length and regular expression expected for class names.
-(Regular expressions are in standard <b>java.util.regex</b> format.)
+Specify <b>0</b> to not check the length of names. Regular expressions are in standard <b>java.util.regex</b> format.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassNestingDepth.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassNestingDepth.html
index bd8b314..0780fb8 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassNestingDepth.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassNestingDepth.html
@@ -6,6 +6,6 @@
<p>
Use the field below to specify the maximum nesting depth a class is allowed have.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassNewInstance.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassNewInstance.html
index 811ae15..3ead980 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassNewInstance.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassNewInstance.html
@@ -11,6 +11,6 @@
in a <b>java.lang.reflect.InvocationTargetException</b>.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassOnlyUsedInOneModule.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassOnlyUsedInOneModule.html
index 00098bc..ce83114 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassOnlyUsedInOneModule.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassOnlyUsedInOneModule.html
@@ -5,6 +5,6 @@
that module.
<!-- tooltip end -->
<p>
-<small>New in 11, Powered by InspectionGadgets</small>
+<small>New in 11</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassOnlyUsedInOnePackage.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassOnlyUsedInOnePackage.html
index 00098bc..ce83114 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassOnlyUsedInOnePackage.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassOnlyUsedInOnePackage.html
@@ -5,6 +5,6 @@
that module.
<!-- tooltip end -->
<p>
-<small>New in 11, Powered by InspectionGadgets</small>
+<small>New in 11</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassReferencesSubclass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassReferencesSubclass.html
index b432384..c8d8b55 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassReferencesSubclass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassReferencesSubclass.html
@@ -4,6 +4,6 @@
Such references may be confusing, and violate several rules of object-oriented design.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassUnconnectedToPackage.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassUnconnectedToPackage.html
index c2a15af..ac6518c 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassUnconnectedToPackage.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassUnconnectedToPackage.html
@@ -5,6 +5,6 @@
and may often profitably be moved.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassWithMultipleLoggers.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassWithMultipleLoggers.html
index f9673d4..d040a5c 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassWithMultipleLoggers.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassWithMultipleLoggers.html
@@ -9,6 +9,6 @@
Use the table below to specify below to specify Logger class names.
Classes which declare multiple fields which have the type of one of the classes specified, will be reported by this inspection.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassWithTooManyDependencies.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassWithTooManyDependencies.html
index 0fbaf18..89e2b91c 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassWithTooManyDependencies.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassWithTooManyDependencies.html
@@ -10,6 +10,6 @@
Use the field below to specify the maximum number of dependencies a class may have
before triggering this inspection
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassWithTooManyDependents.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassWithTooManyDependents.html
index 34b3beb..7634204 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassWithTooManyDependents.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassWithTooManyDependents.html
@@ -9,6 +9,6 @@
Use the field below to specify the maximum number of dependents a class may have before
triggering this inspection
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassWithTooManyTransitiveDependencies.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassWithTooManyTransitiveDependencies.html
index 92d7b98..5130bc8 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassWithTooManyTransitiveDependencies.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassWithTooManyTransitiveDependencies.html
@@ -10,6 +10,6 @@
Use the field below to specify the maximum number of direct or indirect dependencies
a class may have before triggering this inspection
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassWithTooManyTransitiveDependents.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassWithTooManyTransitiveDependents.html
index 839a4e3..4d7ac37 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassWithTooManyTransitiveDependents.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassWithTooManyTransitiveDependents.html
@@ -10,6 +10,6 @@
Use the field below to specify the maximum number of direct or indirect dependents
a class may have before triggering this inspection
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassWithoutConstructor.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassWithoutConstructor.html
index 3a15855..24229c1 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassWithoutConstructor.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassWithoutConstructor.html
@@ -3,6 +3,6 @@
Reports a classes without constructors. Some coding standards prohibit such classes.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassWithoutLogger.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassWithoutLogger.html
index 8237a18..9355202 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassWithoutLogger.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassWithoutLogger.html
@@ -8,6 +8,6 @@
Use the table below to specify below to specify Logger class names.
Classes which do not declare a field with the type of one of the classes specified, will be reported by this inspection.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassWithoutNoArgConstructor.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassWithoutNoArgConstructor.html
index 3b1d5e0..fbc102e 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ClassWithoutNoArgConstructor.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ClassWithoutNoArgConstructor.html
@@ -8,6 +8,6 @@
contain no explicit constructors. These classes are provided a default no-argument constructor
by the compiler.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/CloneCallsConstructors.html b/plugins/InspectionGadgets/src/inspectionDescriptions/CloneCallsConstructors.html
index 4483324..ca0deb7 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/CloneCallsConstructors.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/CloneCallsConstructors.html
@@ -5,6 +5,6 @@
instead of creating the object directly, to support later subclassing.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/CloneCallsSuperClone.html b/plugins/InspectionGadgets/src/inspectionDescriptions/CloneCallsSuperClone.html
index 18bea23..2f013e8 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/CloneCallsSuperClone.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/CloneCallsSuperClone.html
@@ -4,6 +4,6 @@
Cloning an object without calling <b>super.clone()</b> may result in objects being improperly initialized.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/CloneDeclaresCloneNotSupported.html b/plugins/InspectionGadgets/src/inspectionDescriptions/CloneDeclaresCloneNotSupported.html
index 3886ded..a1010d6 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/CloneDeclaresCloneNotSupported.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/CloneDeclaresCloneNotSupported.html
@@ -8,6 +8,6 @@
or <b>clone()</b> methods on <b>final</b> classes.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/CloneInNonCloneableClass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/CloneInNonCloneableClass.html
index 5bc2901..428513e 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/CloneInNonCloneableClass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/CloneInNonCloneableClass.html
@@ -5,6 +5,6 @@
This usually represents a programming error.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/CloneableClassInSecureContext.html b/plugins/InspectionGadgets/src/inspectionDescriptions/CloneableClassInSecureContext.html
index d34d558..c013fb4 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/CloneableClassInSecureContext.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/CloneableClassInSecureContext.html
@@ -6,6 +6,6 @@
throw an error. Cloneable classes may be dangerous in code intended for secure use.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/CloneableImplementsClone.html b/plugins/InspectionGadgets/src/inspectionDescriptions/CloneableImplementsClone.html
index 3ced557..60739bb 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/CloneableImplementsClone.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/CloneableImplementsClone.html
@@ -5,6 +5,6 @@
behavior.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/CollectionAddedToSelf.html b/plugins/InspectionGadgets/src/inspectionDescriptions/CollectionAddedToSelf.html
index 9532a7a..a7793a6 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/CollectionAddedToSelf.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/CollectionAddedToSelf.html
@@ -6,6 +6,6 @@
if <b>hashCode()</b> is ever called on the self-containing collection.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/CollectionContainsUrl.html b/plugins/InspectionGadgets/src/inspectionDescriptions/CollectionContainsUrl.html
index 1bd48ad..c12d1aa 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/CollectionContainsUrl.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/CollectionContainsUrl.html
@@ -11,6 +11,6 @@
can cause significant delays.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/CollectionsFieldAccessReplaceableByMethodCall.html b/plugins/InspectionGadgets/src/inspectionDescriptions/CollectionsFieldAccessReplaceableByMethodCall.html
index 2ed524c..773c777 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/CollectionsFieldAccessReplaceableByMethodCall.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/CollectionsFieldAccessReplaceableByMethodCall.html
@@ -11,6 +11,6 @@
language level of 5.0 or higher.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/CollectionsMustHaveInitialCapacity.html b/plugins/InspectionGadgets/src/inspectionDescriptions/CollectionsMustHaveInitialCapacity.html
index 472bca6..109633b 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/CollectionsMustHaveInitialCapacity.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/CollectionsMustHaveInitialCapacity.html
@@ -15,6 +15,6 @@
</ul>
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ComparableImplementedButEqualsNotOverridden.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ComparableImplementedButEqualsNotOverridden.html
index e1e423a..1d7d157 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ComparableImplementedButEqualsNotOverridden.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ComparableImplementedButEqualsNotOverridden.html
@@ -9,6 +9,6 @@
<b>equals()</b>.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ComparatorMethodParameterNotUsed.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ComparatorMethodParameterNotUsed.html
index 1d73fc1..afd63bc 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ComparatorMethodParameterNotUsed.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ComparatorMethodParameterNotUsed.html
@@ -5,6 +5,6 @@
with itself or the method is not implemented correctly.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ComparatorNotSerializable.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ComparatorNotSerializable.html
index fec4f98..f6e15e8 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ComparatorNotSerializable.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ComparatorNotSerializable.html
@@ -8,6 +8,6 @@
them <b>Serializable</b> is a small cost to avoid such issues.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/CompareToUsesNonFinalVariable.html b/plugins/InspectionGadgets/src/inspectionDescriptions/CompareToUsesNonFinalVariable.html
index e36dbcb..01ca099 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/CompareToUsesNonFinalVariable.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/CompareToUsesNonFinalVariable.html
@@ -6,6 +6,6 @@
using the standard Collections classes.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ComparisonOfShortAndChar.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ComparisonOfShortAndChar.html
index 5741985..3a3c02c 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ComparisonOfShortAndChar.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ComparisonOfShortAndChar.html
@@ -6,6 +6,6 @@
signed and <b>char</b> values unsigned.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ComparisonToNaN.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ComparisonToNaN.html
index 64ed56f..ccbe2ab 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ComparisonToNaN.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ComparisonToNaN.html
@@ -7,6 +7,6 @@
methods instead.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ConditionSignal.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ConditionSignal.html
index 238b104..d4dde83 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ConditionSignal.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ConditionSignal.html
@@ -4,6 +4,6 @@
<b>signalAll()</b> is a better and safer choice.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ConditionalExpression.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ConditionalExpression.html
index 75b4679..4cc4ca5 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ConditionalExpression.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ConditionalExpression.html
@@ -9,6 +9,6 @@
String s = (foo == null) ? "" : foo.toString();
</pre>
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ConditionalExpressionWithIdenticalBranches.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ConditionalExpressionWithIdenticalBranches.html
index 6ce6bc4..efdb431 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ConditionalExpressionWithIdenticalBranches.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ConditionalExpressionWithIdenticalBranches.html
@@ -5,6 +5,6 @@
programmer error.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ConfusingElse.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ConfusingElse.html
index 5355599..8aece42 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ConfusingElse.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ConfusingElse.html
@@ -11,6 +11,6 @@
<b>if</b> branch cannot complete normally and which are not followed by more statements,
similar to the Redundant Else intention.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ConfusingFloatingPointLiteral.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ConfusingFloatingPointLiteral.html
index ada7e78..b4b7d54 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ConfusingFloatingPointLiteral.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ConfusingFloatingPointLiteral.html
@@ -4,6 +4,6 @@
and numbers after the decimal point. Such literals may be confusing, and violate several coding standards.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ConfusingMainMethod.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ConfusingMainMethod.html
index 7679462..de51a02 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ConfusingMainMethod.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ConfusingMainMethod.html
@@ -5,6 +5,6 @@
are expected to be application entry points.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ConfusingOctalEscape.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ConfusingOctalEscape.html
index 32cf94d..10192e3 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ConfusingOctalEscape.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ConfusingOctalEscape.html
@@ -4,6 +4,6 @@
a digit. Such strings may be confusing, and are often the result of errors in escape code creation.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ConnectionResource.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ConnectionResource.html
index 9072a327..9e31994 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ConnectionResource.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ConnectionResource.html
@@ -8,6 +8,6 @@
be inadvertently leaked if an exception is thrown before the resource is closed.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantAssertCondition.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantAssertCondition.html
index 87bff68..2dc3896 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantAssertCondition.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantAssertCondition.html
@@ -5,6 +5,6 @@
Such statements can easily be left over after refactoring and are probably a bug.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantConditionalExpression.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantConditionalExpression.html
index cfc41fa..1cf4727 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantConditionalExpression.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantConditionalExpression.html
@@ -5,6 +5,6 @@
These expressions sometimes occur as the result of automatic refactorings, and may obviously be simplified.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantDeclaredInAbstractClass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantDeclaredInAbstractClass.html
index bc20068..53084d8 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantDeclaredInAbstractClass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantDeclaredInAbstractClass.html
@@ -4,6 +4,6 @@
classes. Some coding standards require that constants be declared in interfaces instead.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantDeclaredInInterface.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantDeclaredInInterface.html
index 5b49517..9f4b0ec5 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantDeclaredInInterface.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantDeclaredInInterface.html
@@ -4,6 +4,6 @@
Some coding standards require that constants be declared in abstract classes instead.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantIfStatement.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantIfStatement.html
index e2223a6..791cf4e 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantIfStatement.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantIfStatement.html
@@ -6,6 +6,6 @@
be simplified.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantJUnitAssertArgument.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantJUnitAssertArgument.html
index aaa4c16..b7ef0694 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantJUnitAssertArgument.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantJUnitAssertArgument.html
@@ -6,6 +6,6 @@
Such statements can easily be left over after refactoring and are probably not intended.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantMathCall.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantMathCall.html
index 8fb51eb..06d86de 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantMathCall.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantMathCall.html
@@ -5,6 +5,6 @@
to be simple compile-time constants.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantNamingConvention.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantNamingConvention.html
index 9bc0bdb..73f0874 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantNamingConvention.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantNamingConvention.html
@@ -5,10 +5,10 @@
<!-- tooltip end -->
<p>
Use the fields below to specify minimum length, maximum length and regular expression expected for constant names
-(Regular expressions are in standard <b>java.util.regex</b> format).
+Specify <b>0</b> to not check the length of names. Regular expressions are in standard <b>java.util.regex</b> format.
<p>
Use the checkbox below to specify that only immutable static final fields should be checked by this inspection.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantOnLHSOfComparison.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantOnLHSOfComparison.html
index 3320700..2d5c7ed 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantOnLHSOfComparison.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantOnLHSOfComparison.html
@@ -4,6 +4,6 @@
specify that constants should be on the right-hand side of comparisons.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantOnRHSOfComparison.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantOnRHSOfComparison.html
index 027aee3..87c601a 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantOnRHSOfComparison.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantOnRHSOfComparison.html
@@ -4,6 +4,6 @@
specify that constants should be on the left-hand side of comparisons.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantStringIntern.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantStringIntern.html
index 08074ec..478f04a 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantStringIntern.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantStringIntern.html
@@ -5,6 +5,6 @@
to <b>String.intern()</b> redundant.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantValueVariableUse.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantValueVariableUse.html
index b1c98a4..b6a9007 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantValueVariableUse.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ConstantValueVariableUse.html
@@ -8,6 +8,6 @@
of a variable which is known to be constant can be replaced with the actual constant.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ConstructorCount.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ConstructorCount.html
index f5175b6..892e92e 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ConstructorCount.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ConstructorCount.html
@@ -7,6 +7,6 @@
<p>
Use the field below to specify the maximum number of constructors a class is allowed to have.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ContinueOrBreakFromFinallyBlock.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ContinueOrBreakFromFinallyBlock.html
index f2a954d..59904d2 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ContinueOrBreakFromFinallyBlock.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ContinueOrBreakFromFinallyBlock.html
@@ -6,6 +6,6 @@
tremendously complicate debugging.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ContinueStatement.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ContinueStatement.html
index ce5fc5a..dc574ca 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ContinueStatement.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ContinueStatement.html
@@ -4,6 +4,6 @@
<b>continue</b> statements complicate refactoring, and can be confusing.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ContinueStatementWithLabel.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ContinueStatementWithLabel.html
index 9694df1..825777e 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ContinueStatementWithLabel.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ContinueStatementWithLabel.html
@@ -4,6 +4,6 @@
Labeled <b>continue</b> statements complicate refactoring, and can be confusing.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ControlFlowStatementWithoutBraces.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ControlFlowStatementWithoutBraces.html
index accef0b..dd8eb88 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ControlFlowStatementWithoutBraces.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ControlFlowStatementWithoutBraces.html
@@ -6,6 +6,6 @@
errors when modifying the code.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/CovariantCompareTo.html b/plugins/InspectionGadgets/src/inspectionDescriptions/CovariantCompareTo.html
index 670f0b6..7ab9a5bc 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/CovariantCompareTo.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/CovariantCompareTo.html
@@ -5,6 +5,6 @@
which does take <b>java.lang.Object</b> as its argument. Normally, this is a mistake.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/CovariantEquals.html b/plugins/InspectionGadgets/src/inspectionDescriptions/CovariantEquals.html
index 41d2ab3..817d829 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/CovariantEquals.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/CovariantEquals.html
@@ -5,6 +5,6 @@
which does take <b>java.lang.Object</b> as its argument. Normally, this is a mistake.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/CustomClassloader.html b/plugins/InspectionGadgets/src/inspectionDescriptions/CustomClassloader.html
index 6eda855..f4d8689 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/CustomClassloader.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/CustomClassloader.html
@@ -5,6 +5,6 @@
and professionally inspected for possible security issues.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/CustomSecurityManager.html b/plugins/InspectionGadgets/src/inspectionDescriptions/CustomSecurityManager.html
index 41bb5e6..95808f9 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/CustomSecurityManager.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/CustomSecurityManager.html
@@ -5,6 +5,6 @@
and professionally inspected for possible security issues.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/CyclicClassDependency.html b/plugins/InspectionGadgets/src/inspectionDescriptions/CyclicClassDependency.html
index 08835b9..815fb32 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/CyclicClassDependency.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/CyclicClassDependency.html
@@ -5,6 +5,6 @@
Since this inspection requires global code analysis, it is only available in batch inspection mode.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/CyclicPackageDependency.html b/plugins/InspectionGadgets/src/inspectionDescriptions/CyclicPackageDependency.html
index 3cd47e9..2649189 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/CyclicPackageDependency.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/CyclicPackageDependency.html
@@ -5,6 +5,6 @@
Since this inspection requires global code analysis, it is only available in batch inspection mode.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/CyclomaticComplexity.html b/plugins/InspectionGadgets/src/inspectionDescriptions/CyclomaticComplexity.html
index 9b48642..6169b60 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/CyclomaticComplexity.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/CyclomaticComplexity.html
@@ -7,6 +7,6 @@
<p>
Use the field below to specify the maximum cyclomatic complexity a method is allowed to have.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/DateToString.html b/plugins/InspectionGadgets/src/inspectionDescriptions/DateToString.html
index 28db58d..4fc44cf 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/DateToString.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/DateToString.html
@@ -4,6 +4,6 @@
incorrect in an internationalized environment.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/DeclareCollectionAsInterface.html b/plugins/InspectionGadgets/src/inspectionDescriptions/DeclareCollectionAsInterface.html
index cf4814e..dad179c 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/DeclareCollectionAsInterface.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/DeclareCollectionAsInterface.html
@@ -4,6 +4,6 @@
rather than an appropriate interface.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/DefaultNotLastCaseInSwitch.html b/plugins/InspectionGadgets/src/inspectionDescriptions/DefaultNotLastCaseInSwitch.html
index d4cf4b1..985cc6b 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/DefaultNotLastCaseInSwitch.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/DefaultNotLastCaseInSwitch.html
@@ -4,6 +4,6 @@
comes before some other case. This construct is unnecessarily confusing.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/DeserializableClassInSecureContext.html b/plugins/InspectionGadgets/src/inspectionDescriptions/DeserializableClassInSecureContext.html
index 0641f12..4bae342 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/DeserializableClassInSecureContext.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/DeserializableClassInSecureContext.html
@@ -8,6 +8,6 @@
<p>
Use the checkbox below to ignore classes extending <b>Throwable</b> directly or indirectly.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/DesignForExtension.html b/plugins/InspectionGadgets/src/inspectionDescriptions/DesignForExtension.html
index 6ec3ff0..abe9314 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/DesignForExtension.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/DesignForExtension.html
@@ -12,6 +12,6 @@
appropriate for less restrictive environments.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/DisjointPackage.html b/plugins/InspectionGadgets/src/inspectionDescriptions/DisjointPackage.html
index 3354388..d8cad58 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/DisjointPackage.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/DisjointPackage.html
@@ -5,6 +5,6 @@
conceptual cohesion.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/DivideByZero.html b/plugins/InspectionGadgets/src/inspectionDescriptions/DivideByZero.html
index aab108c..f3004e4 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/DivideByZero.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/DivideByZero.html
@@ -3,6 +3,6 @@
Reports division by zero or remainder by zero.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/DollarSignInName.html b/plugins/InspectionGadgets/src/inspectionDescriptions/DollarSignInName.html
index a3870ac..48ba064 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/DollarSignInName.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/DollarSignInName.html
@@ -4,6 +4,6 @@
such identifiers are legal Java, their use outside of generated java code is strongly discouraged.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/DoubleCheckedLocking.html b/plugins/InspectionGadgets/src/inspectionDescriptions/DoubleCheckedLocking.html
index 5c3ddf4..efa4d7a 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/DoubleCheckedLocking.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/DoubleCheckedLocking.html
@@ -10,6 +10,6 @@
a volatile field for double-checked locking works correctly on virtual machines which
implement the new Java Memory Model.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/DoubleLiteralMayBeFloatLiteral.html b/plugins/InspectionGadgets/src/inspectionDescriptions/DoubleLiteralMayBeFloatLiteral.html
index d1f434e..e517999 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/DoubleLiteralMayBeFloatLiteral.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/DoubleLiteralMayBeFloatLiteral.html
@@ -6,6 +6,6 @@
literal.
<!-- tooltip end -->
<p>
-<small>New in 10.0.2, Powered by InspectionGadgets</small>
+<small>New in 10.0.2</small>
</body>
</html>
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/DoubleNegation.html b/plugins/InspectionGadgets/src/inspectionDescriptions/DoubleNegation.html
index 8784ea2..ecae44f 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/DoubleNegation.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/DoubleNegation.html
@@ -6,6 +6,6 @@
<code><pre>if (!!functionCall())</pre></code>
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/DriverManagerGetConnection.html b/plugins/InspectionGadgets/src/inspectionDescriptions/DriverManagerGetConnection.html
index 31d6f40..9794acc 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/DriverManagerGetConnection.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/DriverManagerGetConnection.html
@@ -6,6 +6,6 @@
allows for connection pooling and other optimizations.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/DuplicateBooleanBranch.html b/plugins/InspectionGadgets/src/inspectionDescriptions/DuplicateBooleanBranch.html
index 38c1a58..4384632 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/DuplicateBooleanBranch.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/DuplicateBooleanBranch.html
@@ -5,6 +5,6 @@
expressions. Such constructs almost always represents a typo or cut-and-paste error.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/DuplicateCondition.html b/plugins/InspectionGadgets/src/inspectionDescriptions/DuplicateCondition.html
index f6fa1cc..7fdc4af 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/DuplicateCondition.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/DuplicateCondition.html
@@ -8,6 +8,6 @@
Use the checkbox below to let this inspection ignore conditions containing method calls. Some method calls may return a different value
on an identical invocation.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/DynamicRegexReplaceableByCompiledPattern.html b/plugins/InspectionGadgets/src/inspectionDescriptions/DynamicRegexReplaceableByCompiledPattern.html
index f2cfbf5..30bb1d1c 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/DynamicRegexReplaceableByCompiledPattern.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/DynamicRegexReplaceableByCompiledPattern.html
@@ -7,6 +7,6 @@
that the regular expression does not have to be compiled each time it is used.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ElementOnlyUsedFromTestCode.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ElementOnlyUsedFromTestCode.html
index 7aabf36..a46d517 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ElementOnlyUsedFromTestCode.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ElementOnlyUsedFromTestCode.html
@@ -4,6 +4,6 @@
Since this inspection requires global code analysis, it is only available in batch inspection mode.
<!-- tooltip end -->
<p>
-<small>New in 11, Powered by InspectionGadgets</small>
+<small>New in 11</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/EmptyCatchBlock.html b/plugins/InspectionGadgets/src/inspectionDescriptions/EmptyCatchBlock.html
index bb3120b..63b2848 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/EmptyCatchBlock.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/EmptyCatchBlock.html
@@ -10,6 +10,6 @@
empty catch blocks in JUnit tests should be reported and whether to ignore empty
catch blocks if the parameter is named 'ignore' or 'ignored'.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/EmptyClass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/EmptyClass.html
index da69488..07c8062 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/EmptyClass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/EmptyClass.html
@@ -13,6 +13,6 @@
<p>
Use the second checkbox below to ignore classes which extend <b>java.lang.Throwable</b>.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/EmptyDirectory.html b/plugins/InspectionGadgets/src/inspectionDescriptions/EmptyDirectory.html
index 6d7e46c..6e845ac 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/EmptyDirectory.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/EmptyDirectory.html
@@ -5,6 +5,6 @@
<p>
Use the checkbox below to have this inspection only report directories under source roots.
<p>
-<small>New in 11, Powered by InspectionGadgets</small>
+<small>New in 11</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/EmptyFinallyBlock.html b/plugins/InspectionGadgets/src/inspectionDescriptions/EmptyFinallyBlock.html
index 4bacad9..a37ab26 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/EmptyFinallyBlock.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/EmptyFinallyBlock.html
@@ -6,6 +6,6 @@
<p>
At present, this inspection is disabled in JSP files.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/EmptyInitializer.html b/plugins/InspectionGadgets/src/inspectionDescriptions/EmptyInitializer.html
index 4ba3d3c..c1cad9d 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/EmptyInitializer.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/EmptyInitializer.html
@@ -3,6 +3,6 @@
Reports empty class initializer blocks.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/EmptyStatementBody.html b/plugins/InspectionGadgets/src/inspectionDescriptions/EmptyStatementBody.html
index 1850e1f0..d705ee4 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/EmptyStatementBody.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/EmptyStatementBody.html
@@ -5,11 +5,13 @@
having empty bodies. While occasionally intended, this construction is confusing, and often the result of a typo.
<!-- tooltip end -->
<p>
-At present, this inspection is disabled in JSP files.
+This inspection is disabled in JSP files.
<p>
-Use the checkbox below to indicate whether this inspection should report statements whose body is an
+Use the first checkbox below to indicate whether this inspection should report statements whose body is an
empty code block, rather than just empty statements.
<p>
-<small>Powered by InspectionGadgets</small>
+Use the second checkbox below to ignore empty statement bodies which contain a comment.
+<p>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/EmptySynchronizedStatement.html b/plugins/InspectionGadgets/src/inspectionDescriptions/EmptySynchronizedStatement.html
index 9f36607..44b044f 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/EmptySynchronizedStatement.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/EmptySynchronizedStatement.html
@@ -7,6 +7,6 @@
<p>
At present, this inspection is disabled in JSP files.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/EmptyTryBlock.html b/plugins/InspectionGadgets/src/inspectionDescriptions/EmptyTryBlock.html
index 2adf3b5..c3fcf8e 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/EmptyTryBlock.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/EmptyTryBlock.html
@@ -5,6 +5,6 @@
<p>
At present, this inspection is disabled in JSP files.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/EnumAsName.html b/plugins/InspectionGadgets/src/inspectionDescriptions/EnumAsName.html
index 9d52502..ceda4a0 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/EnumAsName.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/EnumAsName.html
@@ -5,6 +5,6 @@
earlier JVMs, but will cause problems under Java 5.0 or later.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/EnumClass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/EnumClass.html
index 7e16af0..76e42e4 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/EnumClass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/EnumClass.html
@@ -4,6 +4,6 @@
Such statements are not supported under Java 1.4 or earlier JVMs.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/EnumSwitchStatementWhichMissesCases.html b/plugins/InspectionGadgets/src/inspectionDescriptions/EnumSwitchStatementWhichMissesCases.html
index feeb593..348fbd7 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/EnumSwitchStatementWhichMissesCases.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/EnumSwitchStatementWhichMissesCases.html
@@ -6,6 +6,6 @@
<p>
Use the checkbox below to ignore <b>switch</b> statements which have a <b>default</b> branch.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/EnumeratedClassNamingConvention.html b/plugins/InspectionGadgets/src/inspectionDescriptions/EnumeratedClassNamingConvention.html
index 9f2382f..018ce3a9 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/EnumeratedClassNamingConvention.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/EnumeratedClassNamingConvention.html
@@ -5,8 +5,8 @@
<!-- tooltip end -->
<p>
Use the fields below to specify minimum length, maximum length and regular expression expected for enumerated class names.
-(Regular expressions are in standard <b>java.util.regex</b> format.)
+Specify <b>0</b> to not check the length of names. Regular expressions are in standard <b>java.util.regex</b> format.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/EnumeratedConstantNamingConvention.html b/plugins/InspectionGadgets/src/inspectionDescriptions/EnumeratedConstantNamingConvention.html
index c67aa6c..ea823e3 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/EnumeratedConstantNamingConvention.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/EnumeratedConstantNamingConvention.html
@@ -5,8 +5,8 @@
<!-- tooltip end -->
<p>
Use the fields below to specify minimum length, maximum length and regular expression expected for enumerated constant names.
-(Regular expressions are in standard <b>java.util.regex</b> format.)
+Specify <b>0</b> to not check the length of names. Regular expressions are in standard <b>java.util.regex</b> format.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/EnumerationCanBeIteration.html b/plugins/InspectionGadgets/src/inspectionDescriptions/EnumerationCanBeIteration.html
index ab19a8d..22219db 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/EnumerationCanBeIteration.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/EnumerationCanBeIteration.html
@@ -6,6 +6,6 @@
Collection Framework, which has been available since Java 1.2.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/EqualsBetweenInconvertibleTypes.html b/plugins/InspectionGadgets/src/inspectionDescriptions/EqualsBetweenInconvertibleTypes.html
index 1262025..a2f7e84 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/EqualsBetweenInconvertibleTypes.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/EqualsBetweenInconvertibleTypes.html
@@ -5,6 +5,6 @@
a bug.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/EqualsCalledOnEnumConstant.html b/plugins/InspectionGadgets/src/inspectionDescriptions/EqualsCalledOnEnumConstant.html
index 2510870..da79ddf 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/EqualsCalledOnEnumConstant.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/EqualsCalledOnEnumConstant.html
@@ -7,6 +7,6 @@
have the same identity.
<!-- tooltip end -->
<p>
-<small>New in 8.1, Powered by InspectionGadgets </small>
+<small>New in 8.1 </small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/EqualsHashCodeCalledOnUrl.html b/plugins/InspectionGadgets/src/inspectionDescriptions/EqualsHashCodeCalledOnUrl.html
index f790dff..be99b0f 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/EqualsHashCodeCalledOnUrl.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/EqualsHashCodeCalledOnUrl.html
@@ -9,6 +9,6 @@
significant delays.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/EqualsUsesNonFinalVariable.html b/plugins/InspectionGadgets/src/inspectionDescriptions/EqualsUsesNonFinalVariable.html
index eeec9ee..23f1be5 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/EqualsUsesNonFinalVariable.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/EqualsUsesNonFinalVariable.html
@@ -6,6 +6,6 @@
using the standard Collections classes.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/EqualsWhichDoesntCheckParameterClass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/EqualsWhichDoesntCheckParameterClass.html
index 391c10b..92df0f4 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/EqualsWhichDoesntCheckParameterClass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/EqualsWhichDoesntCheckParameterClass.html
@@ -5,6 +5,6 @@
in the <b>equals()</b> method may result in latent errors if the object is later used in an untyped collection.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ErrorRethrown.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ErrorRethrown.html
index 32fcddf..b4fed6b 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ErrorRethrown.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ErrorRethrown.html
@@ -6,6 +6,6 @@
reported by this inspection.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ExceptionFromCatchWhichDoesntWrap.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ExceptionFromCatchWhichDoesntWrap.html
index 637c720..2fc1b72 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ExceptionFromCatchWhichDoesntWrap.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ExceptionFromCatchWhichDoesntWrap.html
@@ -14,6 +14,6 @@
Use the second checkbox below to have this inspection ignore throw statements which throw exceptions which do not have a
constructor which accepts a <b>Throwable</b> cause.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ExceptionNameDoesntEndWithException.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ExceptionNameDoesntEndWithException.html
index 9732491..1533a37 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ExceptionNameDoesntEndWithException.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ExceptionNameDoesntEndWithException.html
@@ -3,6 +3,6 @@
Reports exception classes whose names don't end with 'Exception'.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ExpectedExceptionNeverThrown.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ExpectedExceptionNeverThrown.html
index 4e6a76e..72c3bc9 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ExpectedExceptionNeverThrown.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ExpectedExceptionNeverThrown.html
@@ -4,6 +4,6 @@
which are never thrown inside the method body.
<!-- tooltip end -->
<p>
-<small>New in 10, Powered by InspectionGadgets</small>
+<small>New in 10</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ExtendsAnnotation.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ExtendsAnnotation.html
index dd0b6cf..6d43753 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ExtendsAnnotation.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ExtendsAnnotation.html
@@ -5,6 +5,6 @@
and discouraged.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ExtendsConcreteCollection.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ExtendsConcreteCollection.html
index 09fcbaf..6a515f8 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ExtendsConcreteCollection.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ExtendsConcreteCollection.html
@@ -7,6 +7,6 @@
more brittle than delegating collection calls.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ExtendsObject.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ExtendsObject.html
index 73a0de1..08b49e4 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ExtendsObject.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ExtendsObject.html
@@ -3,6 +3,6 @@
Reports any classes explicitly declared to extend <b>java.lang.Object</b>.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ExtendsThread.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ExtendsThread.html
index c051dc4..0344227 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ExtendsThread.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ExtendsThread.html
@@ -6,6 +6,6 @@
control over the thread's behavior, and to better localize all concurrency related operations.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ExtendsUtilityClass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ExtendsUtilityClass.html
index 6e7f68e..a3d63bf 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ExtendsUtilityClass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ExtendsUtilityClass.html
@@ -8,6 +8,6 @@
<p>
Use the checkbox below to ignore any classes that override a utility class but are also utility classes themselves.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ExternalizableWithSerializationMethods.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ExternalizableWithSerializationMethods.html
index ad36e23..217445d 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ExternalizableWithSerializationMethods.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ExternalizableWithSerializationMethods.html
@@ -5,6 +5,6 @@
<b>Externalizable</b> objects.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ExternalizableWithoutPublicNoArgConstructor.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ExternalizableWithoutPublicNoArgConstructor.html
index 59e1723..c4b75ab 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ExternalizableWithoutPublicNoArgConstructor.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ExternalizableWithoutPublicNoArgConstructor.html
@@ -5,6 +5,6 @@
method called. If a public no-arg constructor is not present a <b>java.io.InvalidClassException</b> will be thrown at runtime.
<!-- tooltip end -->
<p>
-<small>New in 12, Powered by InspectionGadgets</small>
+<small>New in 12</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/FallthruInSwitchStatement.html b/plugins/InspectionGadgets/src/inspectionDescriptions/FallthruInSwitchStatement.html
index 8847990..99e99f4 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/FallthruInSwitchStatement.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/FallthruInSwitchStatement.html
@@ -9,6 +9,6 @@
This inspection ignores any fall-through commented with a text matching the regex pattern <code>(?i)falls?\s*thro?u</code>.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/FeatureEnvy.html b/plugins/InspectionGadgets/src/inspectionDescriptions/FeatureEnvy.html
index 54dfc60..c86c69b 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/FeatureEnvy.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/FeatureEnvy.html
@@ -7,6 +7,6 @@
envy is often an indication that functionality is located in the wrong class.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/FieldAccessedSynchronizedAndUnsynchronized.html b/plugins/InspectionGadgets/src/inspectionDescriptions/FieldAccessedSynchronizedAndUnsynchronized.html
index 640b175..4613d35 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/FieldAccessedSynchronizedAndUnsynchronized.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/FieldAccessedSynchronizedAndUnsynchronized.html
@@ -8,6 +8,6 @@
<p>
Use the checkbox below to specify if simple getters and setters are counted as accesses too.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/FieldCanBeMovedToSubclass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/FieldCanBeMovedToSubclass.html
index 608c82b..737b4ae 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/FieldCanBeMovedToSubclass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/FieldCanBeMovedToSubclass.html
@@ -4,6 +4,6 @@
Since this inspection requires global code analysis, it is only available in batch inspection mode.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/FieldCount.html b/plugins/InspectionGadgets/src/inspectionDescriptions/FieldCount.html
index a6cb3d4..d9505476 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/FieldCount.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/FieldCount.html
@@ -11,6 +11,6 @@
<p>Per default this inspection only counts immutable <b>static final</b> objects as constant. Use the second checkbox below to
count any <b>static final</b> field as constant.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/FieldHasSetterButNoGetter.html b/plugins/InspectionGadgets/src/inspectionDescriptions/FieldHasSetterButNoGetter.html
index 432b0d3..bfcd5ab 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/FieldHasSetterButNoGetter.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/FieldHasSetterButNoGetter.html
@@ -5,6 +5,6 @@
certain bean containers.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/FieldHidesSuperclassField.html b/plugins/InspectionGadgets/src/inspectionDescriptions/FieldHidesSuperclassField.html
index 6f0bb11..b0eeae1 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/FieldHidesSuperclassField.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/FieldHidesSuperclassField.html
@@ -7,6 +7,6 @@
Use the checkbox below the indicate whether this inspection should report all name clashes, or only
clashes with fields which are visible from the subclass.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/FieldMayBeFinal.html b/plugins/InspectionGadgets/src/inspectionDescriptions/FieldMayBeFinal.html
index 3b3dab2..4085bc5 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/FieldMayBeFinal.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/FieldMayBeFinal.html
@@ -6,6 +6,6 @@
in its declaration or in one non-static class initializer or in all constructors.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/FieldMayBeStatic.html b/plugins/InspectionGadgets/src/inspectionDescriptions/FieldMayBeStatic.html
index 94a522e..30d105f 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/FieldMayBeStatic.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/FieldMayBeStatic.html
@@ -4,6 +4,6 @@
may be static if it is declared <b>final</b>, and is initialized with a constant.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/FieldRepeatedlyAccessed.html b/plugins/InspectionGadgets/src/inspectionDescriptions/FieldRepeatedlyAccessed.html
index b27dc2ec..7c5d59d 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/FieldRepeatedlyAccessed.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/FieldRepeatedlyAccessed.html
@@ -11,6 +11,6 @@
Use the checkbox below to ignore <b>final</b> fields being repeatedly accessed, as many compilers and JVMs
can optimize that case without explicit creation of a temporary local variable. Constant fields are always ignored by this inspection.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/FinalClass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/FinalClass.html
index 7f29a36..b800d91 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/FinalClass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/FinalClass.html
@@ -4,6 +4,6 @@
standards discourage <b>final</b> classes.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/FinalMethod.html b/plugins/InspectionGadgets/src/inspectionDescriptions/FinalMethod.html
index 41ea010..c34bc48 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/FinalMethod.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/FinalMethod.html
@@ -4,6 +4,6 @@
standards discourage <b>final</b> methods.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/FinalMethodInFinalClass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/FinalMethodInFinalClass.html
index e3e2031..ed33fee 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/FinalMethodInFinalClass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/FinalMethodInFinalClass.html
@@ -4,6 +4,6 @@
classes that are declared <b>final</b>. This is unnecessary, and may be confusing.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/FinalPrivateMethod.html b/plugins/InspectionGadgets/src/inspectionDescriptions/FinalPrivateMethod.html
index 17293ab..5425fb0 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/FinalPrivateMethod.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/FinalPrivateMethod.html
@@ -6,6 +6,6 @@
<b>final</b> is redundant.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/FinalStaticMethod.html b/plugins/InspectionGadgets/src/inspectionDescriptions/FinalStaticMethod.html
index 4e5cc9a..097d548 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/FinalStaticMethod.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/FinalStaticMethod.html
@@ -8,6 +8,6 @@
signature.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/Finalize.html b/plugins/InspectionGadgets/src/inspectionDescriptions/Finalize.html
index a9180e8..0061df5e 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/Finalize.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/Finalize.html
@@ -13,6 +13,6 @@
implementation in a subclass. An empty final <b>finalize()</b>
implementation can also be used to prevent subclasses from overriding.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/FinalizeCallsSuperFinalize.html b/plugins/InspectionGadgets/src/inspectionDescriptions/FinalizeCallsSuperFinalize.html
index 9a60f33..7eb02c0 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/FinalizeCallsSuperFinalize.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/FinalizeCallsSuperFinalize.html
@@ -13,6 +13,6 @@
implementation in a subclass. An empty final <b>finalize()</b>
implementation can also be used to prevent subclasses from overriding.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/FinalizeNotProtected.html b/plugins/InspectionGadgets/src/inspectionDescriptions/FinalizeNotProtected.html
index 3369d9b..1d41ce4 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/FinalizeNotProtected.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/FinalizeNotProtected.html
@@ -5,6 +5,6 @@
to prevent it from being explicitly invoked by other classes.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/FinallyBlockCannotCompleteNormally.html b/plugins/InspectionGadgets/src/inspectionDescriptions/FinallyBlockCannotCompleteNormally.html
index 2688b89..6792c45 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/FinallyBlockCannotCompleteNormally.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/FinallyBlockCannotCompleteNormally.html
@@ -4,6 +4,6 @@
can not complete normally.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/FloatingPointEquality.html b/plugins/InspectionGadgets/src/inspectionDescriptions/FloatingPointEquality.html
index 89de5e4..82b9dc0 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/FloatingPointEquality.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/FloatingPointEquality.html
@@ -7,6 +7,6 @@
with zero literals.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ForCanBeForeach.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ForCanBeForeach.html
index 111adc7..f148d7e 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ForCanBeForeach.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ForCanBeForeach.html
@@ -15,6 +15,6 @@
This inspection only reports if the project or module is configured to use a
language level of 5.0 or higher.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ForLoopReplaceableByWhile.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ForLoopReplaceableByWhile.html
index cb31dfb..6689e95 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ForLoopReplaceableByWhile.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ForLoopReplaceableByWhile.html
@@ -7,6 +7,6 @@
<p>
Use the checkbox below if you wish this inspection to ignore <b>for</b> loops with trivial or non-existent conditions.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ForLoopThatDoesntUseLoopVariable.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ForLoopThatDoesntUseLoopVariable.html
index 4994169..384560e 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ForLoopThatDoesntUseLoopVariable.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ForLoopThatDoesntUseLoopVariable.html
@@ -4,6 +4,6 @@
update does not use the <b>for</b> loop variable.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ForLoopWithMissingComponent.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ForLoopWithMissingComponent.html
index c896331..a8bdc56 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ForLoopWithMissingComponent.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ForLoopWithMissingComponent.html
@@ -9,6 +9,6 @@
This is a standard way to iterate over a collection, in which the
<b>for</b> loop does not have an update
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ForeachStatement.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ForeachStatement.html
index fb2ca22..c6b103b 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ForeachStatement.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ForeachStatement.html
@@ -4,6 +4,6 @@
Such <b>for</b> statements are not supported under Java 1.4 and older.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/HardcodedFileSeparators.html b/plugins/InspectionGadgets/src/inspectionDescriptions/HardcodedFileSeparators.html
index 3fc8741..0558782 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/HardcodedFileSeparators.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/HardcodedFileSeparators.html
@@ -10,6 +10,6 @@
header) is an error. Use the checkbox below to include <b>example/*</b> in the set of recognized media types.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/HardcodedLineSeparators.html b/plugins/InspectionGadgets/src/inspectionDescriptions/HardcodedLineSeparators.html
index 2f69ff5..0448d0d 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/HardcodedLineSeparators.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/HardcodedLineSeparators.html
@@ -4,6 +4,6 @@
character literal. These characters are commonly used as line separators, and portability may suffer they are hardcoded.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/HashCodeUsesNonFinalVariable.html b/plugins/InspectionGadgets/src/inspectionDescriptions/HashCodeUsesNonFinalVariable.html
index 207a60a..c7138d0 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/HashCodeUsesNonFinalVariable.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/HashCodeUsesNonFinalVariable.html
@@ -6,6 +6,6 @@
using the standard Collections classes.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/HibernateResource.html b/plugins/InspectionGadgets/src/inspectionDescriptions/HibernateResource.html
index 4f37918..355869a 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/HibernateResource.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/HibernateResource.html
@@ -11,6 +11,6 @@
block. This style is less desirable because it is more verbose than opening a resource
in front of a try block.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/HtmlTagCanBeJavadocTag.html b/plugins/InspectionGadgets/src/inspectionDescriptions/HtmlTagCanBeJavadocTag.html
index 48698aa..1f7b2c4 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/HtmlTagCanBeJavadocTag.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/HtmlTagCanBeJavadocTag.html
@@ -5,6 +5,6 @@
inside the comment, instead of HTML character entities.
<!-- tooltip end -->
<p>
-<small>New in 10.5, Powered by InspectionGadgets</small>
+<small>New in 10.5</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/IOResource.html b/plugins/InspectionGadgets/src/inspectionDescriptions/IOResource.html
index c212309..ecd1c7d 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/IOResource.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/IOResource.html
@@ -16,6 +16,6 @@
block. This style is less desirable because it is more verbose than opening a resource in front of a try
block.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/IfCanBeSwitch.html b/plugins/InspectionGadgets/src/inspectionDescriptions/IfCanBeSwitch.html
index f94bc8a..527cc69 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/IfCanBeSwitch.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/IfCanBeSwitch.html
@@ -14,6 +14,6 @@
Use the second checkbox below to have this inspection suggest switch statements on
enum constants.
<p>
-<small>New in 10.5, Powered by InspectionGadgets</small>
+<small>New in 10.5</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/IfMayBeConditional.html b/plugins/InspectionGadgets/src/inspectionDescriptions/IfMayBeConditional.html
index a3278d6..edfbee0 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/IfMayBeConditional.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/IfMayBeConditional.html
@@ -21,6 +21,6 @@
Use the checkbox below to let this inspection report <b>if</b> statements containing method calls which can be replaced with a single
method call with a conditional expression argument.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/IfStatementWithIdenticalBranches.html b/plugins/InspectionGadgets/src/inspectionDescriptions/IfStatementWithIdenticalBranches.html
index 7a8df92..f73b3ca 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/IfStatementWithIdenticalBranches.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/IfStatementWithIdenticalBranches.html
@@ -5,6 +5,6 @@
programmer error.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/IfStatementWithTooManyBranches.html b/plugins/InspectionGadgets/src/inspectionDescriptions/IfStatementWithTooManyBranches.html
index 6ccaf0f..d5dbdaf 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/IfStatementWithTooManyBranches.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/IfStatementWithTooManyBranches.html
@@ -7,6 +7,6 @@
<p>
Use the field below to specify the maximum number of branches an <b>if</b> statement is allowed to have.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/IgnoreResultOfCall.html b/plugins/InspectionGadgets/src/inspectionDescriptions/IgnoreResultOfCall.html
index a6c56b1..008c410 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/IgnoreResultOfCall.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/IgnoreResultOfCall.html
@@ -15,6 +15,6 @@
that class and all of its subclasses. In addition, you may choose to report any
call to a non-library call whose result is ignored
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/IgnoredJUnitTest.html b/plugins/InspectionGadgets/src/inspectionDescriptions/IgnoredJUnitTest.html
index 763e753..da6d81f 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/IgnoredJUnitTest.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/IgnoredJUnitTest.html
@@ -3,6 +3,6 @@
Reports JUnit tests which are annotated with @Ignore.
<!-- tooltip end -->
<p>
-<small>New in 11, Powered by InspectionGadgets</small>
+<small>New in 11</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ImplicitArrayToString.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ImplicitArrayToString.html
index e85e333..acc59c6 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ImplicitArrayToString.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ImplicitArrayToString.html
@@ -6,6 +6,6 @@
a case, the contents of the array were meant to be used and the not array object itself.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ImplicitCallToSuper.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ImplicitCallToSuper.html
index fc27fa7..3a1213e 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ImplicitCallToSuper.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ImplicitCallToSuper.html
@@ -6,6 +6,6 @@
<b>super()</b> be made explicitly.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ImplicitNumericConversion.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ImplicitNumericConversion.html
index a86611d..3fd63ac 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ImplicitNumericConversion.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ImplicitNumericConversion.html
@@ -13,6 +13,6 @@
<p>Use the third checkbox to let this inspection ignore all conversions from literals and
compile time constants.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/IncompatibleMask.html b/plugins/InspectionGadgets/src/inspectionDescriptions/IncompatibleMask.html
index 2bbde64..8f017e1 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/IncompatibleMask.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/IncompatibleMask.html
@@ -7,6 +7,6 @@
and <b><i>constant2</i></b> are incompatible bitmask constants.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/IncrementDecrementUsedAsExpression.html b/plugins/InspectionGadgets/src/inspectionDescriptions/IncrementDecrementUsedAsExpression.html
index 3bb7ddf..3e7bb35 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/IncrementDecrementUsedAsExpression.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/IncrementDecrementUsedAsExpression.html
@@ -5,6 +5,6 @@
given construct should do precisely one thing.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/IndexOfReplaceableByContains.html b/plugins/InspectionGadgets/src/inspectionDescriptions/IndexOfReplaceableByContains.html
index a5b98b3..b600a40 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/IndexOfReplaceableByContains.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/IndexOfReplaceableByContains.html
@@ -8,6 +8,6 @@
language level of 5.0 or higher.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/InfiniteLoopStatement.html b/plugins/InspectionGadgets/src/inspectionDescriptions/InfiniteLoopStatement.html
index 30e9a1a..ee2708a 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/InfiniteLoopStatement.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/InfiniteLoopStatement.html
@@ -6,6 +6,6 @@
are often a symptom of coding errors.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/InfiniteRecursion.html b/plugins/InspectionGadgets/src/inspectionDescriptions/InfiniteRecursion.html
index 1dc1c10..f3349a9 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/InfiniteRecursion.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/InfiniteRecursion.html
@@ -5,6 +5,6 @@
return normally.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/InnerClassMayBeStatic.html b/plugins/InspectionGadgets/src/inspectionDescriptions/InnerClassMayBeStatic.html
index e9ce25f..8d81ee6 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/InnerClassMayBeStatic.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/InnerClassMayBeStatic.html
@@ -5,6 +5,6 @@
its enclosing class instance. A static inner class uses slightly less memory.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/InnerClassOnInterface.html b/plugins/InspectionGadgets/src/inspectionDescriptions/InnerClassOnInterface.html
index fae719e..c041143 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/InnerClassOnInterface.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/InnerClassOnInterface.html
@@ -6,6 +6,6 @@
by this inspection.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/InnerClassVariableHidesOuterClassVariable.html b/plugins/InspectionGadgets/src/inspectionDescriptions/InnerClassVariableHidesOuterClassVariable.html
index 77ed6e2..7c2852a 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/InnerClassVariableHidesOuterClassVariable.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/InnerClassVariableHidesOuterClassVariable.html
@@ -7,6 +7,6 @@
Use the checkbox below the indicate whether this inspection should report all name clashes, or only
clashes with fields which are visible from the inner class.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/InstanceMethodNamingConvention.html b/plugins/InspectionGadgets/src/inspectionDescriptions/InstanceMethodNamingConvention.html
index 2d43e9b..4bf1c67 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/InstanceMethodNamingConvention.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/InstanceMethodNamingConvention.html
@@ -6,8 +6,8 @@
<!-- tooltip end -->
<p>
Use the fields below to specify minimum length, maximum length and regular expression expected for instance method names.
-(Regular expressions are in standard <b>java.util.regex</b> format.)
+Specify <b>0</b> to not check the length of names. Regular expressions are in standard <b>java.util.regex</b> format.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/InstanceVariableInitialization.html b/plugins/InspectionGadgets/src/inspectionDescriptions/InstanceVariableInitialization.html
index 12779b8..4db2365 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/InstanceVariableInitialization.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/InstanceVariableInitialization.html
@@ -8,6 +8,6 @@
<p>
Use the checkbox below to indicate whether you want uninitialized primitive fields to be reported.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/InstanceVariableNamingConvention.html b/plugins/InspectionGadgets/src/inspectionDescriptions/InstanceVariableNamingConvention.html
index 4a9c36f..8016ffc 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/InstanceVariableNamingConvention.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/InstanceVariableNamingConvention.html
@@ -6,8 +6,8 @@
<p>
Use the fields below to specify minimum length, maximum length and regular expression expected for
instance variable names.
-(Regular expressions are in standard <b>java.util.regex</b> format.)
+Specify <b>0</b> to not check the length of names. Regular expressions are in standard <b>java.util.regex</b> format.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/InstanceVariableOfConcreteClass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/InstanceVariableOfConcreteClass.html
index c5e302f..9281a0b 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/InstanceVariableOfConcreteClass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/InstanceVariableOfConcreteClass.html
@@ -7,6 +7,6 @@
<p>
Use the checkbox below to have this inspection ignore instance fields whose type is an abstract class.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/InstanceVariableUninitializedUse.html b/plugins/InspectionGadgets/src/inspectionDescriptions/InstanceVariableUninitializedUse.html
index 73c71ed..612b304 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/InstanceVariableUninitializedUse.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/InstanceVariableUninitializedUse.html
@@ -11,6 +11,6 @@
<p>
Use the checkbox below to indicate whether you want uninitialized primitive fields to be reported.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/InstanceofCatchParameter.html b/plugins/InspectionGadgets/src/inspectionDescriptions/InstanceofCatchParameter.html
index 10e10c9..c3961a1 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/InstanceofCatchParameter.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/InstanceofCatchParameter.html
@@ -5,6 +5,6 @@
<b>catch</b> blocks, rather than <b>instanceof</b>.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/InstanceofChain.html b/plugins/InspectionGadgets/src/inspectionDescriptions/InstanceofChain.html
index 8963e15..04a3ebd 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/InstanceofChain.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/InstanceofChain.html
@@ -8,6 +8,6 @@
<p>
Use the checkbox below to ignore instanceof expressions on library classes.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/InstanceofIncompatibleInterface.html b/plugins/InspectionGadgets/src/inspectionDescriptions/InstanceofIncompatibleInterface.html
index d27bf68..2b1eeac 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/InstanceofIncompatibleInterface.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/InstanceofIncompatibleInterface.html
@@ -8,6 +8,6 @@
<b>false</b>
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/InstanceofInterfaces.html b/plugins/InspectionGadgets/src/inspectionDescriptions/InstanceofInterfaces.html
index 781e1cf..37f7b0d 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/InstanceofInterfaces.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/InstanceofInterfaces.html
@@ -7,6 +7,6 @@
<p>
Use the checkbox below to have this inspection ignore <b>instanceof</b> on abstract classes.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/InstanceofThis.html b/plugins/InspectionGadgets/src/inspectionDescriptions/InstanceofThis.html
index c36fe5c..103fddc 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/InstanceofThis.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/InstanceofThis.html
@@ -6,6 +6,6 @@
polymorphic constructions.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/InstantiatingObjectToGetClassObject.html b/plugins/InspectionGadgets/src/inspectionDescriptions/InstantiatingObjectToGetClassObject.html
index 0c8af2c..7236b0c 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/InstantiatingObjectToGetClassObject.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/InstantiatingObjectToGetClassObject.html
@@ -5,6 +5,6 @@
directly by name.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/InstantiationOfUtilityClass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/InstantiationOfUtilityClass.html
index 0e4d0de..1a923f9 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/InstantiationOfUtilityClass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/InstantiationOfUtilityClass.html
@@ -6,6 +6,6 @@
programmer error.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/IntLiteralMayBeLongLiteral.html b/plugins/InspectionGadgets/src/inspectionDescriptions/IntLiteralMayBeLongLiteral.html
index 12d5d1b..e4fac09 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/IntLiteralMayBeLongLiteral.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/IntLiteralMayBeLongLiteral.html
@@ -6,6 +6,6 @@
literal.
<!-- tooltip end -->
<p>
-<small>New in 9, Powered by InspectionGadgets</small>
+<small>New in 9</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/IntegerDivisionInFloatingPointContext.html b/plugins/InspectionGadgets/src/inspectionDescriptions/IntegerDivisionInFloatingPointContext.html
index 6196379..6aeffc9 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/IntegerDivisionInFloatingPointContext.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/IntegerDivisionInFloatingPointContext.html
@@ -6,6 +6,6 @@
due to truncation in integer division.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/IntegerMultiplicationImplicitCastToLong.html b/plugins/InspectionGadgets/src/inspectionDescriptions/IntegerMultiplicationImplicitCastToLong.html
index d3b0dea..03dcb8e 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/IntegerMultiplicationImplicitCastToLong.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/IntegerMultiplicationImplicitCastToLong.html
@@ -8,6 +8,6 @@
Use the checkbox below to ignore compile time constant expressions which evaluate to
a non-overflowing value.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/InterfaceNamingConvention.html b/plugins/InspectionGadgets/src/inspectionDescriptions/InterfaceNamingConvention.html
index 8183383..9114dcd 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/InterfaceNamingConvention.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/InterfaceNamingConvention.html
@@ -5,8 +5,8 @@
<!-- tooltip end -->
<p>
Use the fields below to specify minimum length, maximum length and regular expression expected for interface names.
-(Regular expressions are in standard <b>java.util.regex</b> format.)
+Specify <b>0</b> to not check the length of names. Regular expressions are in standard <b>java.util.regex</b> format.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/InterfaceNeverImplemented.html b/plugins/InspectionGadgets/src/inspectionDescriptions/InterfaceNeverImplemented.html
index 4a4b142..0b11271 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/InterfaceNeverImplemented.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/InterfaceNeverImplemented.html
@@ -3,6 +3,6 @@
Reports interfaces which have no concrete subclasses.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/InterfaceWithOnlyOneDirectInheritor.html b/plugins/InspectionGadgets/src/inspectionDescriptions/InterfaceWithOnlyOneDirectInheritor.html
index d61b573..3614d67 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/InterfaceWithOnlyOneDirectInheritor.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/InterfaceWithOnlyOneDirectInheritor.html
@@ -10,6 +10,6 @@
merging the interface with its inheritor.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/IteratorHasNextCallsIteratorNext.html b/plugins/InspectionGadgets/src/inspectionDescriptions/IteratorHasNextCallsIteratorNext.html
index 1495cb2..fb8704f 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/IteratorHasNextCallsIteratorNext.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/IteratorHasNextCallsIteratorNext.html
@@ -6,6 +6,6 @@
should not modify the iterators state, while <b>next()</b> should.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/IteratorNextDoesNotThrowNoSuchElementException.html b/plugins/InspectionGadgets/src/inspectionDescriptions/IteratorNextDoesNotThrowNoSuchElementException.html
index c42a2bf..7860fec 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/IteratorNextDoesNotThrowNoSuchElementException.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/IteratorNextDoesNotThrowNoSuchElementException.html
@@ -6,6 +6,6 @@
and may result in subtle bugs if the iterator is ever used in a non-standard fashion.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/JDBCExecuteWithNonConstantString.html b/plugins/InspectionGadgets/src/inspectionDescriptions/JDBCExecuteWithNonConstantString.html
index aaf88dd..1d88e6c 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/JDBCExecuteWithNonConstantString.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/JDBCExecuteWithNonConstantString.html
@@ -5,6 +5,6 @@
Constructed SQL statements are a common source of security breaches.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/JDBCPrepareStatementWithNonConstantString.html b/plugins/InspectionGadgets/src/inspectionDescriptions/JDBCPrepareStatementWithNonConstantString.html
index 7fdd805..6ceae51 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/JDBCPrepareStatementWithNonConstantString.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/JDBCPrepareStatementWithNonConstantString.html
@@ -6,6 +6,6 @@
Constructed SQL statements are a common source of security breaches.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/JDBCResource.html b/plugins/InspectionGadgets/src/inspectionDescriptions/JDBCResource.html
index 39852c0..50d5406 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/JDBCResource.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/JDBCResource.html
@@ -14,6 +14,6 @@
block. This style is less desirable because it is more verbose than opening a resource
in front of a try block.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/JNDIResource.html b/plugins/InspectionGadgets/src/inspectionDescriptions/JNDIResource.html
index 3aad1f9..d4c7df6 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/JNDIResource.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/JNDIResource.html
@@ -12,6 +12,6 @@
block. This style is less desirable because it is more verbose than opening a resource
in front of a try block.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/JUnit3StyleTestMethodInJUnit4Class.html b/plugins/InspectionGadgets/src/inspectionDescriptions/JUnit3StyleTestMethodInJUnit4Class.html
index 06ad552..e73eefa 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/JUnit3StyleTestMethodInJUnit4Class.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/JUnit3StyleTestMethodInJUnit4Class.html
@@ -5,6 +5,6 @@
In addition to being confusing such test methods will not be run.
<!-- tooltip end -->
<p>
-<small>New in 12, Powered by InspectionGadgets</small>
+<small>New in 12</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/JUnit4AnnotatedMethodInJUnit3TestCase.html b/plugins/InspectionGadgets/src/inspectionDescriptions/JUnit4AnnotatedMethodInJUnit3TestCase.html
index bb0a5e5..d8f93a2 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/JUnit4AnnotatedMethodInJUnit3TestCase.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/JUnit4AnnotatedMethodInJUnit3TestCase.html
@@ -6,6 +6,6 @@
be actually ignored if its name starts with test.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/JUnitAbstractTestClassNamingConvention.html b/plugins/InspectionGadgets/src/inspectionDescriptions/JUnitAbstractTestClassNamingConvention.html
index 8492d81..21f1b3f 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/JUnitAbstractTestClassNamingConvention.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/JUnitAbstractTestClassNamingConvention.html
@@ -6,9 +6,9 @@
with "TestCase".
<!-- tooltip end -->
<p>
-Use the fields below to specify minimum length, maximum length and regular expression expected for class names.
-(Regular expressions are in standard <b>java.util.regex</b> format.)
+Use the fields below to specify minimum length, maximum length and regular expression expected for abstract JUnit test class names.
+Specify <b>0</b> to not check the length of names. Regular expressions are in standard <b>java.util.regex</b> format.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/JUnitDatapoint.html b/plugins/InspectionGadgets/src/inspectionDescriptions/JUnitDatapoint.html
index 2ab2b6bd..3ef1c78 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/JUnitDatapoint.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/JUnitDatapoint.html
@@ -3,6 +3,6 @@
Checks for any member that is annotated with @DataPoint but is not public or not static.
<!-- tooltip end -->
<p>
-<small>New in 13, Powered by InspectionGadgets</small>
+<small>New in 13</small>
</body>
</html>
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/JUnitRule.html b/plugins/InspectionGadgets/src/inspectionDescriptions/JUnitRule.html
index de3483f..9923e66 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/JUnitRule.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/JUnitRule.html
@@ -11,6 +11,6 @@
</ul>
<!-- tooltip end -->
<p>
-<small>New in 13, Powered by InspectionGadgets</small>
+<small>New in 13</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/JUnitTestClassNamingConvention.html b/plugins/InspectionGadgets/src/inspectionDescriptions/JUnitTestClassNamingConvention.html
index 431e0ac..6e27810 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/JUnitTestClassNamingConvention.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/JUnitTestClassNamingConvention.html
@@ -6,9 +6,9 @@
with "Test".
<!-- tooltip end -->
<p>
-Use the fields below to specify minimum length, maximum length and regular expression expected for class names.
-(Regular expressions are in standard <b>java.util.regex</b> format.)
+Use the fields below to specify minimum length, maximum length and regular expression expected for JUnit test class names.
+ Specify <b>0</b> to not check the length of names. Regular expressions are in standard <b>java.util.regex</b> format.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/JavaLangImport.html b/plugins/InspectionGadgets/src/inspectionDescriptions/JavaLangImport.html
index c7bc927..141b16c 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/JavaLangImport.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/JavaLangImport.html
@@ -6,6 +6,6 @@
for off-line reporting on code bases that you don't intend to change.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/JavaLangReflect.html b/plugins/InspectionGadgets/src/inspectionDescriptions/JavaLangReflect.html
index 31914d1..44d0e20 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/JavaLangReflect.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/JavaLangReflect.html
@@ -5,6 +5,6 @@
exception checking.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/KeySetIterationMayUseEntrySet.html b/plugins/InspectionGadgets/src/inspectionDescriptions/KeySetIterationMayUseEntrySet.html
index 957b4f5..c50cf4b 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/KeySetIterationMayUseEntrySet.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/KeySetIterationMayUseEntrySet.html
@@ -7,6 +7,6 @@
<b>entrySet()</b> of the map.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/LabeledStatement.html b/plugins/InspectionGadgets/src/inspectionDescriptions/LabeledStatement.html
index 46f49e2..6ab57fd 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/LabeledStatement.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/LabeledStatement.html
@@ -3,6 +3,6 @@
Reports labeled statements.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/LawOfDemeter.html b/plugins/InspectionGadgets/src/inspectionDescriptions/LawOfDemeter.html
index 8f372da..5aec449 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/LawOfDemeter.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/LawOfDemeter.html
@@ -5,6 +5,6 @@
for an explanation what the Law of Demeter is.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/LengthOneStringInIndexOf.html b/plugins/InspectionGadgets/src/inspectionDescriptions/LengthOneStringInIndexOf.html
index 94f73e5..e7e6a119 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/LengthOneStringInIndexOf.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/LengthOneStringInIndexOf.html
@@ -6,6 +6,6 @@
These String literals may be replaced by equivalent character literals, gaining some performance enhancement.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/LengthOneStringsInConcatenation.html b/plugins/InspectionGadgets/src/inspectionDescriptions/LengthOneStringsInConcatenation.html
index 409e4f9..9a82ac0 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/LengthOneStringsInConcatenation.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/LengthOneStringsInConcatenation.html
@@ -4,6 +4,6 @@
These literals may be replaced by equivalent character literals, gaining some performance enhancement.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/LimitedScopeInnerClass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/LimitedScopeInnerClass.html
index 9319295..57766d3 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/LimitedScopeInnerClass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/LimitedScopeInnerClass.html
@@ -5,6 +5,6 @@
confusing.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ListIndexOfReplaceableByContains.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ListIndexOfReplaceableByContains.html
index 7b9ade9..b973e19 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ListIndexOfReplaceableByContains.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ListIndexOfReplaceableByContains.html
@@ -5,6 +5,6 @@
<b>List.contains()</b>.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ListenerMayUseAdapter.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ListenerMayUseAdapter.html
index 5d3e378..0b00bbf 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ListenerMayUseAdapter.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ListenerMayUseAdapter.html
@@ -9,6 +9,6 @@
Use the checkbox below to indicate if the inspection should warn even if no empty
implementing methods are found.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/LiteralAsArgToStringEquals.html b/plugins/InspectionGadgets/src/inspectionDescriptions/LiteralAsArgToStringEquals.html
index 110d4b8..de63558 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/LiteralAsArgToStringEquals.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/LiteralAsArgToStringEquals.html
@@ -5,6 +5,6 @@
argument, thus minimizing <b>NullPointerException</b>s.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/LoadLibraryWithNonConstantString.html b/plugins/InspectionGadgets/src/inspectionDescriptions/LoadLibraryWithNonConstantString.html
index f2c36bb..2d609b6 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/LoadLibraryWithNonConstantString.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/LoadLibraryWithNonConstantString.html
@@ -5,6 +5,6 @@
Constructed library location strings are a common source of security breaches.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/LocalVariableHidingMemberVariable.html b/plugins/InspectionGadgets/src/inspectionDescriptions/LocalVariableHidingMemberVariable.html
index bfbca05..feb6e0e 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/LocalVariableHidingMemberVariable.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/LocalVariableHidingMemberVariable.html
@@ -5,6 +5,6 @@
Such a variable name may be confusing.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/LocalVariableNamingConvention.html b/plugins/InspectionGadgets/src/inspectionDescriptions/LocalVariableNamingConvention.html
index 35fa839..9455544e 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/LocalVariableNamingConvention.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/LocalVariableNamingConvention.html
@@ -5,8 +5,8 @@
<!-- tooltip end -->
<p>
Use the fields below to specify minimum length, maximum length and regular expression expected for local variables names.
-(Regular expressions are in standard <b>java.util.regex</b> format.)
+Specify <b>0</b> to not check the length of names. Regular expressions are in standard <b>java.util.regex</b> format.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/LocalVariableOfConcreteClass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/LocalVariableOfConcreteClass.html
index ec575bb..746619d 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/LocalVariableOfConcreteClass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/LocalVariableOfConcreteClass.html
@@ -8,6 +8,6 @@
<p>
Use the checkbox below to have this inspection ignore local variables whose type is an abstract class.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/LogStatementGuardedByLogCondition.html b/plugins/InspectionGadgets/src/inspectionDescriptions/LogStatementGuardedByLogCondition.html
index dd4a0b5..29dcb9c 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/LogStatementGuardedByLogCondition.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/LogStatementGuardedByLogCondition.html
@@ -15,6 +15,6 @@
<p>
Use the checkbox below to let this inspection flag all unguarded log calls, not only those with non-constant arguments.
<p>
-<small>New in 8, Powered by InspectionGadgets</small>
+<small>New in 8</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/LoggerInitializedWithForeignClass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/LoggerInitializedWithForeignClass.html
index e17ca6a..d19c82e 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/LoggerInitializedWithForeignClass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/LoggerInitializedWithForeignClass.html
@@ -6,6 +6,6 @@
<p>
Use the table below to specify the logger factory classes and logger factory methods recognized by this inspection.
<p>
-<small>New in 8, Powered by InspectionGadgets</small>
+<small>New in 8</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/LoggingConditionDisagreesWithLogStatement.html b/plugins/InspectionGadgets/src/inspectionDescriptions/LoggingConditionDisagreesWithLogStatement.html
index ce67c05..417de23 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/LoggingConditionDisagreesWithLogStatement.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/LoggingConditionDisagreesWithLogStatement.html
@@ -12,6 +12,6 @@
<p>This inspection understands the <i>java.util</i>, <i>log4j</i>, <i>commons-logging</i> and <i>slf4j</i> logging frameworks.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/LongLiteralsEndingWithLowercaseL.html b/plugins/InspectionGadgets/src/inspectionDescriptions/LongLiteralsEndingWithLowercaseL.html
index 79fc670..04924b2 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/LongLiteralsEndingWithLowercaseL.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/LongLiteralsEndingWithLowercaseL.html
@@ -4,6 +4,6 @@
literals may be confusing, as lowercase 'l' looks very similar to '1'.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/LoopConditionNotUpdatedInsideLoop.html b/plugins/InspectionGadgets/src/inspectionDescriptions/LoopConditionNotUpdatedInsideLoop.html
index 556f88a..7903bd8 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/LoopConditionNotUpdatedInsideLoop.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/LoopConditionNotUpdatedInsideLoop.html
@@ -5,6 +5,6 @@
are probably not what was intended.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/LoopStatementsThatDontLoop.html b/plugins/InspectionGadgets/src/inspectionDescriptions/LoopStatementsThatDontLoop.html
index cce848a..cddd793 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/LoopStatementsThatDontLoop.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/LoopStatementsThatDontLoop.html
@@ -5,6 +5,6 @@
bodies are guaranteed to execute at most once. Normally, this is an indication of a bug.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/LoopWithImplicitTerminationCondition.html b/plugins/InspectionGadgets/src/inspectionDescriptions/LoopWithImplicitTerminationCondition.html
index 6ace72a..ac5cd8c 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/LoopWithImplicitTerminationCondition.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/LoopWithImplicitTerminationCondition.html
@@ -12,6 +12,6 @@
was made an explicit loop condition.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/MagicCharacter.html b/plugins/InspectionGadgets/src/inspectionDescriptions/MagicCharacter.html
index ea63920..9548316 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/MagicCharacter.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/MagicCharacter.html
@@ -6,6 +6,6 @@
efforts.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/MagicNumber.html b/plugins/InspectionGadgets/src/inspectionDescriptions/MagicNumber.html
index 5d7e1cc..b617007 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/MagicNumber.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/MagicNumber.html
@@ -15,6 +15,6 @@
Use the fourth checkbox below to ignore magic numbers used as initial capacity when constructing <b>Collection</b>, <b>Map</b>,
<b>StringBuilder</b> or <b>StringBuffer</b> objects.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/MalformedFormatString.html b/plugins/InspectionGadgets/src/inspectionDescriptions/MalformedFormatString.html
index 264c851..2c1c2bc 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/MalformedFormatString.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/MalformedFormatString.html
@@ -9,6 +9,6 @@
and do not fit the standard Java format string syntax.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/MalformedRegex.html b/plugins/InspectionGadgets/src/inspectionDescriptions/MalformedRegex.html
index 214879d..8839743 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/MalformedRegex.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/MalformedRegex.html
@@ -6,6 +6,6 @@
and do not fit the standard Java regular expression syntax.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/MalformedXPath.html b/plugins/InspectionGadgets/src/inspectionDescriptions/MalformedXPath.html
index c8f5a5d..57d5cdd 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/MalformedXPath.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/MalformedXPath.html
@@ -5,6 +5,6 @@
<b>javax.xml.xpath.XPath</b> and do not fit the standard XPath syntax.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ManualArrayCopy.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ManualArrayCopy.html
index 34daba1..4d2f87e 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ManualArrayCopy.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ManualArrayCopy.html
@@ -4,6 +4,6 @@
calls to <b>System.arraycopy()</b>.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ManualArrayToCollectionCopy.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ManualArrayToCollectionCopy.html
index 1bf2ad4..7c64b8f 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ManualArrayToCollectionCopy.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ManualArrayToCollectionCopy.html
@@ -4,6 +4,6 @@
<b>Collection.addAll(Arrays.asList())</b> or <b>Collections.addAll()</b>.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/MapReplaceableByEnumMap.html b/plugins/InspectionGadgets/src/inspectionDescriptions/MapReplaceableByEnumMap.html
index 99f0aea..3996715 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/MapReplaceableByEnumMap.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/MapReplaceableByEnumMap.html
@@ -7,6 +7,6 @@
that those of other sets, as the underlying data structure is a simple array.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/MarkerInterface.html b/plugins/InspectionGadgets/src/inspectionDescriptions/MarkerInterface.html
index 56d04c1..5919937 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/MarkerInterface.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/MarkerInterface.html
@@ -7,6 +7,6 @@
this inspection.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/MathRandomCastToInt.html b/plugins/InspectionGadgets/src/inspectionDescriptions/MathRandomCastToInt.html
index 52b576e..b433b5d 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/MathRandomCastToInt.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/MathRandomCastToInt.html
@@ -9,6 +9,6 @@
<b>java.util.Random</b>.
<!-- tooltip end -->
<p>
-<small>New in 10.5, Powered by InspectionGadgets</small>
+<small>New in 10.5</small>
</body>
</html>
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/MethodCallInLoopCondition.html b/plugins/InspectionGadgets/src/inspectionDescriptions/MethodCallInLoopCondition.html
index b283f81..ce1409f 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/MethodCallInLoopCondition.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/MethodCallInLoopCondition.html
@@ -8,6 +8,6 @@
have adverse performance implications
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/MethodCanBeVariableArityMethod.html b/plugins/InspectionGadgets/src/inspectionDescriptions/MethodCanBeVariableArityMethod.html
index 4445fa8..1c5b255 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/MethodCanBeVariableArityMethod.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/MethodCanBeVariableArityMethod.html
@@ -11,6 +11,6 @@
<p>
Use the second checkbox below to ignore methods overriding a method in a super class.
<p>
-<small>New in 10.5, Powered by InspectionGadgets</small>
+<small>New in 10.5</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/MethodCount.html b/plugins/InspectionGadgets/src/inspectionDescriptions/MethodCount.html
index 28724c5..9c7dfd4 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/MethodCount.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/MethodCount.html
@@ -9,6 +9,6 @@
<p>
Use the checkbox below to specify that simple getters and setters should be ignored in the method count.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/MethodCoupling.html b/plugins/InspectionGadgets/src/inspectionDescriptions/MethodCoupling.html
index 4baba21..ecbbf2c 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/MethodCoupling.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/MethodCoupling.html
@@ -8,6 +8,6 @@
<p>
Use the field below to specify the maximum coupling a method is allowed to have.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/MethodMayBeStatic.html b/plugins/InspectionGadgets/src/inspectionDescriptions/MethodMayBeStatic.html
index f403b3c..381349e 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/MethodMayBeStatic.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/MethodMayBeStatic.html
@@ -9,6 +9,6 @@
or <b>final</b> methods, which increases the
performance of this inspection and to ignore empty methods.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/MethodMayBeSynchronized.html b/plugins/InspectionGadgets/src/inspectionDescriptions/MethodMayBeSynchronized.html
index 3313d24..c7daa9f 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/MethodMayBeSynchronized.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/MethodMayBeSynchronized.html
@@ -9,6 +9,6 @@
containing method marked <b>synchronized</b>.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/MethodNameSameAsClassName.html b/plugins/InspectionGadgets/src/inspectionDescriptions/MethodNameSameAsClassName.html
index 350dfce..ef236e7 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/MethodNameSameAsClassName.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/MethodNameSameAsClassName.html
@@ -4,6 +4,6 @@
A method with such a name may be easily mistaken for a constructor.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/MethodNameSameAsParentName.html b/plugins/InspectionGadgets/src/inspectionDescriptions/MethodNameSameAsParentName.html
index 5df192e..a2d265f 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/MethodNameSameAsParentName.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/MethodNameSameAsParentName.html
@@ -4,6 +4,6 @@
Such a method name may be confusing.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/MethodNamesDifferOnlyByCase.html b/plugins/InspectionGadgets/src/inspectionDescriptions/MethodNamesDifferOnlyByCase.html
index 7fce6c0..befcbf4 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/MethodNamesDifferOnlyByCase.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/MethodNamesDifferOnlyByCase.html
@@ -6,6 +6,6 @@
<p>Use the checkbox below to have this inspection ignore methods which are overrides or implementations of
super methods.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/MethodOnlyUsedFromInnerClass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/MethodOnlyUsedFromInnerClass.html
index 1c2744f..f5d0d1a 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/MethodOnlyUsedFromInnerClass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/MethodOnlyUsedFromInnerClass.html
@@ -13,6 +13,6 @@
<p>
Use the third checkbox to only report <b>static</b> methods.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/MethodOverloadsParentMethod.html b/plugins/InspectionGadgets/src/inspectionDescriptions/MethodOverloadsParentMethod.html
index 13e1f07..76b4b36 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/MethodOverloadsParentMethod.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/MethodOverloadsParentMethod.html
@@ -7,6 +7,6 @@
<p>
Use the checkbox below also report even if the parameter types are not compatible.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/MethodOverridesPackageLocalMethod.html b/plugins/InspectionGadgets/src/inspectionDescriptions/MethodOverridesPackageLocalMethod.html
index 9e95584..ecd43e4 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/MethodOverridesPackageLocalMethod.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/MethodOverridesPackageLocalMethod.html
@@ -7,6 +7,6 @@
the subclass resides in the same package.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/MethodOverridesPrivateMethod.html b/plugins/InspectionGadgets/src/inspectionDescriptions/MethodOverridesPrivateMethod.html
index ec2af27..346f9d3 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/MethodOverridesPrivateMethod.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/MethodOverridesPrivateMethod.html
@@ -6,6 +6,6 @@
made publicly visible.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/MethodOverridesStaticMethod.html b/plugins/InspectionGadgets/src/inspectionDescriptions/MethodOverridesStaticMethod.html
index 4e1b35a..a89631d 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/MethodOverridesStaticMethod.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/MethodOverridesStaticMethod.html
@@ -4,6 +4,6 @@
methods may result in confusing semantics.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/MethodReturnAlwaysConstant.html b/plugins/InspectionGadgets/src/inspectionDescriptions/MethodReturnAlwaysConstant.html
index f689833..022eaed 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/MethodReturnAlwaysConstant.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/MethodReturnAlwaysConstant.html
@@ -4,6 +4,6 @@
Since this inspection requires global code analysis, it is only available in batch inspection mode.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/MethodReturnOfConcreteClass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/MethodReturnOfConcreteClass.html
index 8c0bd45..50e8ef6 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/MethodReturnOfConcreteClass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/MethodReturnOfConcreteClass.html
@@ -7,6 +7,6 @@
<p>
Use the checkbox below to have this inspection ignore methods whose return type is an abstract class.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/MethodWithMultipleLoops.html b/plugins/InspectionGadgets/src/inspectionDescriptions/MethodWithMultipleLoops.html
index 2c0e582..eca8eb5 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/MethodWithMultipleLoops.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/MethodWithMultipleLoops.html
@@ -3,6 +3,6 @@
Reports methods containing multiple loop statements.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/MismatchedArrayReadWrite.html b/plugins/InspectionGadgets/src/inspectionDescriptions/MismatchedArrayReadWrite.html
index 2835221..b1b29dc 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/MismatchedArrayReadWrite.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/MismatchedArrayReadWrite.html
@@ -5,6 +5,6 @@
dead, incomplete or erroneous code.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/MismatchedCollectionQueryUpdate.html b/plugins/InspectionGadgets/src/inspectionDescriptions/MismatchedCollectionQueryUpdate.html
index 025e854..9cfe2ed 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/MismatchedCollectionQueryUpdate.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/MismatchedCollectionQueryUpdate.html
@@ -9,6 +9,6 @@
the beginning of the method name. Query methods which return their result are automatically detected, only
query methods which return their result in an argument (e.g. write to OutputStream) need to be specified.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/MismatchedStringBuilderQueryUpdate.html b/plugins/InspectionGadgets/src/inspectionDescriptions/MismatchedStringBuilderQueryUpdate.html
index 0872191..a883418 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/MismatchedStringBuilderQueryUpdate.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/MismatchedStringBuilderQueryUpdate.html
@@ -5,6 +5,6 @@
dead, incomplete or erroneous code.
<!-- tooltip end -->
<p>
-<small>New in 10.5, Powered by InspectionGadgets</small>
+<small>New in 10.5</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/MisorderedAssertEqualsParameters.html b/plugins/InspectionGadgets/src/inspectionDescriptions/MisorderedAssertEqualsParameters.html
index eaaae62..117a26a 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/MisorderedAssertEqualsParameters.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/MisorderedAssertEqualsParameters.html
@@ -6,6 +6,6 @@
arguments differ.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/MissingDeprecatedAnnotation.html b/plugins/InspectionGadgets/src/inspectionDescriptions/MissingDeprecatedAnnotation.html
index 4bd5661..6ded618 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/MissingDeprecatedAnnotation.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/MissingDeprecatedAnnotation.html
@@ -7,6 +7,6 @@
language level of 5.0 or higher.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/MissingOverrideAnnotation.html b/plugins/InspectionGadgets/src/inspectionDescriptions/MissingOverrideAnnotation.html
index c7dc789..d3e7b26 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/MissingOverrideAnnotation.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/MissingOverrideAnnotation.html
@@ -18,6 +18,6 @@
Use the second checkbox below to have this inspection ignore overriding methods
in anonymous classes.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/MissortedModifiers.html b/plugins/InspectionGadgets/src/inspectionDescriptions/MissortedModifiers.html
index 03583ce..0207101 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/MissortedModifiers.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/MissortedModifiers.html
@@ -6,6 +6,6 @@
<p>
Use the checkbox below to specify that annotations should always be sorted before keyword modifiers.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/MisspelledCompareTo.html b/plugins/InspectionGadgets/src/inspectionDescriptions/MisspelledCompareTo.html
index 1c70675..1bb4d93 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/MisspelledCompareTo.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/MisspelledCompareTo.html
@@ -4,6 +4,6 @@
Normally, this is a typo of <b>compareTo()</b>.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/MisspelledEquals.html b/plugins/InspectionGadgets/src/inspectionDescriptions/MisspelledEquals.html
index b093a06..1354eae 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/MisspelledEquals.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/MisspelledEquals.html
@@ -4,6 +4,6 @@
Normally, this is a typo of <b>equals()</b>.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/MisspelledHashcode.html b/plugins/InspectionGadgets/src/inspectionDescriptions/MisspelledHashcode.html
index 85c4d06..5daace9 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/MisspelledHashcode.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/MisspelledHashcode.html
@@ -4,6 +4,6 @@
Normally, this is a typo of <b>hashCode()</b>.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/MisspelledSetUp.html b/plugins/InspectionGadgets/src/inspectionDescriptions/MisspelledSetUp.html
index 2c182d3..dee6b01 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/MisspelledSetUp.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/MisspelledSetUp.html
@@ -4,6 +4,6 @@
normally a misspelling of <b>setUp()</b>, and is entirely too easy to make.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/MisspelledTearDown.html b/plugins/InspectionGadgets/src/inspectionDescriptions/MisspelledTearDown.html
index 5ee68d9..d8cf165 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/MisspelledTearDown.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/MisspelledTearDown.html
@@ -4,6 +4,6 @@
normally a misspelling of <b>tearDown()</b>, and is entirely too easy to make.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/MisspelledToString.html b/plugins/InspectionGadgets/src/inspectionDescriptions/MisspelledToString.html
index c222ad1..417f92d 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/MisspelledToString.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/MisspelledToString.html
@@ -4,6 +4,6 @@
Normally, this is a typo of <b>toString()</b>.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ModuleWithTooFewClasses.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ModuleWithTooFewClasses.html
index 38dbc50..514e47c 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ModuleWithTooFewClasses.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ModuleWithTooFewClasses.html
@@ -7,6 +7,6 @@
<p>
Use the field below to specify the minimum number of classes a module may have before triggering this inspection.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ModuleWithTooManyClasses.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ModuleWithTooManyClasses.html
index d167a24..560592a 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ModuleWithTooManyClasses.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ModuleWithTooManyClasses.html
@@ -7,6 +7,6 @@
<p>
Use the field below to specify the maximum number of classes a module may have before triggering this inspection.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/MultipleDeclaration.html b/plugins/InspectionGadgets/src/inspectionDescriptions/MultipleDeclaration.html
index 1e3e827..60a7429 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/MultipleDeclaration.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/MultipleDeclaration.html
@@ -4,6 +4,6 @@
Some coding standards prohibit such declarations.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/MultipleExceptionsDeclaredOnTestMethod.html b/plugins/InspectionGadgets/src/inspectionDescriptions/MultipleExceptionsDeclaredOnTestMethod.html
index 530f604..db4fc4b 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/MultipleExceptionsDeclaredOnTestMethod.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/MultipleExceptionsDeclaredOnTestMethod.html
@@ -6,6 +6,6 @@
<pre><b>throws</b> Exception</pre>
<!-- tooltip end -->
<p>
-<small>New in 9, Powered by InspectionGadgets </small>
+<small>New in 9 </small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/MultipleReturnPointsPerMethod.html b/plugins/InspectionGadgets/src/inspectionDescriptions/MultipleReturnPointsPerMethod.html
index e7396f7..e1c16be 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/MultipleReturnPointsPerMethod.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/MultipleReturnPointsPerMethod.html
@@ -11,6 +11,6 @@
<p>
Use the second checkbox below to ignore <b>return</b> points inside <b>equals()</b> methods.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/MultipleTopLevelClassesInFile.html b/plugins/InspectionGadgets/src/inspectionDescriptions/MultipleTopLevelClassesInFile.html
index e7f0f5d..0fa5992 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/MultipleTopLevelClassesInFile.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/MultipleTopLevelClassesInFile.html
@@ -5,6 +5,6 @@
software tools.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/MultipleTypedDeclaration.html b/plugins/InspectionGadgets/src/inspectionDescriptions/MultipleTypedDeclaration.html
index 47061ac..8012e00 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/MultipleTypedDeclaration.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/MultipleTypedDeclaration.html
@@ -6,6 +6,6 @@
<code><pre>String s = "", array[];</pre></code>
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/MultiplyOrDivideByPowerOfTwo.html b/plugins/InspectionGadgets/src/inspectionDescriptions/MultiplyOrDivideByPowerOfTwo.html
index c2a8578..0c3f8f9 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/MultiplyOrDivideByPowerOfTwo.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/MultiplyOrDivideByPowerOfTwo.html
@@ -7,6 +7,6 @@
Use the checkbox below to enable the inspection for divisions by a power of two. Note that replacing
a power of two division by a shift does not work for negative numbers.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/NakedNotify.html b/plugins/InspectionGadgets/src/inspectionDescriptions/NakedNotify.html
index 78af040..eac466b 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/NakedNotify.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/NakedNotify.html
@@ -9,6 +9,6 @@
isn't necessarily incorrect, it is certainly worth examining.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/NativeMethods.html b/plugins/InspectionGadgets/src/inspectionDescriptions/NativeMethods.html
index fcdba9c..dfa5676 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/NativeMethods.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/NativeMethods.html
@@ -3,6 +3,6 @@
Reports the methods declared <b>native</b>. Native methods are inherently unportable.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/NegatedConditional.html b/plugins/InspectionGadgets/src/inspectionDescriptions/NegatedConditional.html
index ccd1b18..3e9b6cf 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/NegatedConditional.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/NegatedConditional.html
@@ -6,6 +6,6 @@
<p>
Use the checkbox below to ignore comparisons of the form <b>!= null</b>.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/NegatedEqualityExpression.html b/plugins/InspectionGadgets/src/inspectionDescriptions/NegatedEqualityExpression.html
index 17bb421..b7319be 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/NegatedEqualityExpression.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/NegatedEqualityExpression.html
@@ -4,6 +4,6 @@
<pre><code>!(i == 1)</code></pre>
<!-- tooltip end -->
<p>
-<small>New in 12, Powered by InspectionGadgets</small>
+<small>New in 12</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/NegatedIfElse.html b/plugins/InspectionGadgets/src/inspectionDescriptions/NegatedIfElse.html
index 63a12c2..efb7a2b 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/NegatedIfElse.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/NegatedIfElse.html
@@ -8,6 +8,6 @@
<p>
Use the checkbox below to ignore comparisons of the form <b>!= null</b>.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/NestedAssignment.html b/plugins/InspectionGadgets/src/inspectionDescriptions/NestedAssignment.html
index 3f0ab8f..c6f00fe 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/NestedAssignment.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/NestedAssignment.html
@@ -4,6 +4,6 @@
such expressions may be confusing, and violate the general design principle that a given construct should do precisely one thing.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/NestedConditionalExpression.html b/plugins/InspectionGadgets/src/inspectionDescriptions/NestedConditionalExpression.html
index b966c98..c07f14c 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/NestedConditionalExpression.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/NestedConditionalExpression.html
@@ -4,6 +4,6 @@
may result in extremely confusing code.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/NestedMethodCall.html b/plugins/InspectionGadgets/src/inspectionDescriptions/NestedMethodCall.html
index 245f133..d94a1c3 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/NestedMethodCall.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/NestedMethodCall.html
@@ -4,6 +4,6 @@
method call.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/NestedSwitchStatement.html b/plugins/InspectionGadgets/src/inspectionDescriptions/NestedSwitchStatement.html
index 728513a..b6b0597 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/NestedSwitchStatement.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/NestedSwitchStatement.html
@@ -4,6 +4,6 @@
may result in extremely confusing code.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/NestedSynchronizedStatement.html b/plugins/InspectionGadgets/src/inspectionDescriptions/NestedSynchronizedStatement.html
index 55c9ff4..ad6fd49 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/NestedSynchronizedStatement.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/NestedSynchronizedStatement.html
@@ -4,6 +4,6 @@
are either useless (if the lock objects are identical) or prone to deadlock.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/NestedTryStatement.html b/plugins/InspectionGadgets/src/inspectionDescriptions/NestedTryStatement.html
index 4a0777f..dba3c9a 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/NestedTryStatement.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/NestedTryStatement.html
@@ -5,6 +5,6 @@
merged.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/NestingDepth.html b/plugins/InspectionGadgets/src/inspectionDescriptions/NestingDepth.html
index f658efd..5af8c27 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/NestingDepth.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/NestingDepth.html
@@ -6,6 +6,6 @@
<p>
Use the field below to specify the maximum nesting depth a method is allowed to have.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/NewExceptionWithoutArguments.html b/plugins/InspectionGadgets/src/inspectionDescriptions/NewExceptionWithoutArguments.html
index 52aef63..08d5cad 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/NewExceptionWithoutArguments.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/NewExceptionWithoutArguments.html
@@ -6,6 +6,6 @@
<p>
Use the checkbox below to ignore instance creation of exception classes which have no constructors that take arguments.
<p>
-<small>New in 11, Powered by InspectionGadgets</small>
+<small>New in 11</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/NewStringBufferWithCharArgument.html b/plugins/InspectionGadgets/src/inspectionDescriptions/NewStringBufferWithCharArgument.html
index f6e58c1..c24a8e6 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/NewStringBufferWithCharArgument.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/NewStringBufferWithCharArgument.html
@@ -7,6 +7,6 @@
not what was intended.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/NoExplicitFinalizeCalls.html b/plugins/InspectionGadgets/src/inspectionDescriptions/NoExplicitFinalizeCalls.html
index 7738172..bc50f98 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/NoExplicitFinalizeCalls.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/NoExplicitFinalizeCalls.html
@@ -6,6 +6,6 @@
are benign, and are not reported by this inspection.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/NonAtomicOperationOnVolatileField.html b/plugins/InspectionGadgets/src/inspectionDescriptions/NonAtomicOperationOnVolatileField.html
index aca8ae4..a60cf32 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/NonAtomicOperationOnVolatileField.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/NonAtomicOperationOnVolatileField.html
@@ -10,6 +10,6 @@
from the <b>java.util.concurrent.atomic</b> package.
<!-- tooltip end -->
<p>
-<small>New in 10, Powered by InspectionGadgets</small>
+<small>New in 10</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/NonBooleanMethodNameMayNotStartWithQuestion.html b/plugins/InspectionGadgets/src/inspectionDescriptions/NonBooleanMethodNameMayNotStartWithQuestion.html
index 49868ec..0602826 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/NonBooleanMethodNameMayNotStartWithQuestion.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/NonBooleanMethodNameMayNotStartWithQuestion.html
@@ -6,6 +6,6 @@
<p>
Use the list below to specify question words which should only be used for boolean methods.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/NonCommentSourceStatements.html b/plugins/InspectionGadgets/src/inspectionDescriptions/NonCommentSourceStatements.html
index f1b6865..917cd4a 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/NonCommentSourceStatements.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/NonCommentSourceStatements.html
@@ -6,6 +6,6 @@
<p>
Use the field below to specify the maximum number of non-comment source statements a method is allowed to have.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/NonExceptionNameEndsWithException.html b/plugins/InspectionGadgets/src/inspectionDescriptions/NonExceptionNameEndsWithException.html
index 36c6021..73e80e0 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/NonExceptionNameEndsWithException.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/NonExceptionNameEndsWithException.html
@@ -3,6 +3,6 @@
Reports non-exception classes whose names end with 'Exception'.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/NonFinalClone.html b/plugins/InspectionGadgets/src/inspectionDescriptions/NonFinalClone.html
index fca5976..b947102 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/NonFinalClone.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/NonFinalClone.html
@@ -8,6 +8,6 @@
method <b>final</b>.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/NonFinalFieldInEnum.html b/plugins/InspectionGadgets/src/inspectionDescriptions/NonFinalFieldInEnum.html
index bba984a..b0ead44 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/NonFinalFieldInEnum.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/NonFinalFieldInEnum.html
@@ -3,6 +3,6 @@
Reports non-<b>final</b> fields in enumeration types. A non-<b>final</b> field in an enum is rarely needed.
<!-- tooltip end -->
<p>
-<small>New in 12, Powered by InspectionGadgets</small>
+<small>New in 12</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/NonFinalFieldOfException.html b/plugins/InspectionGadgets/src/inspectionDescriptions/NonFinalFieldOfException.html
index 8f16c78..1391d19 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/NonFinalFieldOfException.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/NonFinalFieldOfException.html
@@ -7,6 +7,6 @@
logging.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/NonFinalStaticVariableUsedInClassInitialization.html b/plugins/InspectionGadgets/src/inspectionDescriptions/NonFinalStaticVariableUsedInClassInitialization.html
index e63874b..146a854 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/NonFinalStaticVariableUsedInClassInitialization.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/NonFinalStaticVariableUsedInClassInitialization.html
@@ -6,6 +6,6 @@
extremely difficult and confusing bugs.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/NonFinalUtilityClass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/NonFinalUtilityClass.html
index de2612d..23f0a2e 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/NonFinalUtilityClass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/NonFinalUtilityClass.html
@@ -5,6 +5,6 @@
prevents them from being inadvertently subclassed.
<!-- tooltip end -->
<p>
-<small>New in 12, Powered by InspectionGadgets</small>
+<small>New in 12</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/NonProtectedConstructorInAbstractClass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/NonProtectedConstructorInAbstractClass.html
index 287205b..125a1c0 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/NonProtectedConstructorInAbstractClass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/NonProtectedConstructorInAbstractClass.html
@@ -5,6 +5,6 @@
<b>private</b>.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/NonReproducibleMathCall.html b/plugins/InspectionGadgets/src/inspectionDescriptions/NonReproducibleMathCall.html
index bafb5b0..ab6cec0 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/NonReproducibleMathCall.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/NonReproducibleMathCall.html
@@ -6,6 +6,6 @@
should be used instead.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/NonSerializableFieldInSerializableClass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/NonSerializableFieldInSerializableClass.html
index 46adcb2..e06759a 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/NonSerializableFieldInSerializableClass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/NonSerializableFieldInSerializableClass.html
@@ -20,6 +20,6 @@
Use the second list below to specify special annotations. Fields annotated with one of
these annotations will be ignored by this inspection.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/NonSerializableObjectBoundToHttpSession.html b/plugins/InspectionGadgets/src/inspectionDescriptions/NonSerializableObjectBoundToHttpSession.html
index d064d5d..770447c 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/NonSerializableObjectBoundToHttpSession.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/NonSerializableObjectBoundToHttpSession.html
@@ -9,6 +9,6 @@
they are declared to contain are non-<b>Serializable</b>.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/NonSerializableObjectPassedToObjectStream.html b/plugins/InspectionGadgets/src/inspectionDescriptions/NonSerializableObjectPassedToObjectStream.html
index 5893e7d..bcb2846 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/NonSerializableObjectPassedToObjectStream.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/NonSerializableObjectPassedToObjectStream.html
@@ -7,6 +7,6 @@
they are declared to contain are non-<b>Serializable</b>.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/NonSerializableWithSerialVersionUIDField.html b/plugins/InspectionGadgets/src/inspectionDescriptions/NonSerializableWithSerialVersionUIDField.html
index 57834b5..3421fe3 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/NonSerializableWithSerialVersionUIDField.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/NonSerializableWithSerialVersionUIDField.html
@@ -4,6 +4,6 @@
field. This is usually an indication of a programmer error.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/NonSerializableWithSerializationMethods.html b/plugins/InspectionGadgets/src/inspectionDescriptions/NonSerializableWithSerializationMethods.html
index 6b3fc16..2cff0cb 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/NonSerializableWithSerializationMethods.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/NonSerializableWithSerializationMethods.html
@@ -4,6 +4,6 @@
or <b>writeObject()</b> methods. Such methods normally indicate programmer error.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/NonShortCircuitBoolean.html b/plugins/InspectionGadgets/src/inspectionDescriptions/NonShortCircuitBoolean.html
index 0580831..6ae949e 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/NonShortCircuitBoolean.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/NonShortCircuitBoolean.html
@@ -6,6 +6,6 @@
and <b>||</b> ), and may lead to subtle bugs.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/NonStaticFinalLogger.html b/plugins/InspectionGadgets/src/inspectionDescriptions/NonStaticFinalLogger.html
index 8e02799..ad18639 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/NonStaticFinalLogger.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/NonStaticFinalLogger.html
@@ -10,6 +10,6 @@
Fields which have a type equal to one of the class names specified and which are not <b>static</b>
and <b>final</b>, will be reported by this inspection.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/NonStaticInnerClassInSecureContext.html b/plugins/InspectionGadgets/src/inspectionDescriptions/NonStaticInnerClassInSecureContext.html
index c0a9440..53507c3 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/NonStaticInnerClassInSecureContext.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/NonStaticInnerClassInSecureContext.html
@@ -5,6 +5,6 @@
compromise security.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/NonSynchronizedMethodOverridesSynchronizedMethod.html b/plugins/InspectionGadgets/src/inspectionDescriptions/NonSynchronizedMethodOverridesSynchronizedMethod.html
index e92e225..9b6ba31 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/NonSynchronizedMethodOverridesSynchronizedMethod.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/NonSynchronizedMethodOverridesSynchronizedMethod.html
@@ -4,6 +4,6 @@
methods overriding <b>synchronized</b> methods.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/NonThreadSafeLazyInitialization.html b/plugins/InspectionGadgets/src/inspectionDescriptions/NonThreadSafeLazyInitialization.html
index 3cbe769..f203aa9 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/NonThreadSafeLazyInitialization.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/NonThreadSafeLazyInitialization.html
@@ -13,6 +13,6 @@
where the JVM guarantees thread-safety of such initializations.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/NoopMethodInAbstractClass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/NoopMethodInAbstractClass.html
index 5c8ffb8..416c959 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/NoopMethodInAbstractClass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/NoopMethodInAbstractClass.html
@@ -5,6 +5,6 @@
their own implementations.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/NotifyCalledOnCondition.html b/plugins/InspectionGadgets/src/inspectionDescriptions/NotifyCalledOnCondition.html
index 4bc9717..28df50d 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/NotifyCalledOnCondition.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/NotifyCalledOnCondition.html
@@ -7,6 +7,6 @@
<b>signalAll()</b> was intended instead.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/NotifyNotInSynchronizedContext.html b/plugins/InspectionGadgets/src/inspectionDescriptions/NotifyNotInSynchronizedContext.html
index c1765eb..f014325 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/NotifyNotInSynchronizedContext.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/NotifyNotInSynchronizedContext.html
@@ -7,6 +7,6 @@
the containing method is called, but it's worth looking at.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/NotifyWithoutCorrespondingWait.html b/plugins/InspectionGadgets/src/inspectionDescriptions/NotifyWithoutCorrespondingWait.html
index d388b0b..33cbabe 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/NotifyWithoutCorrespondingWait.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/NotifyWithoutCorrespondingWait.html
@@ -6,6 +6,6 @@
can be found. Only calls which target fields of the current class are reported by this inspection.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/NullArgumentToVariableArgMethod.html b/plugins/InspectionGadgets/src/inspectionDescriptions/NullArgumentToVariableArgMethod.html
index 331af34..5c3508f 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/NullArgumentToVariableArgMethod.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/NullArgumentToVariableArgMethod.html
@@ -6,6 +6,6 @@
wrapped as a single-element array, as may be expected.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/NullThrown.html b/plugins/InspectionGadgets/src/inspectionDescriptions/NullThrown.html
index 4361c8d..a777ebb 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/NullThrown.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/NullThrown.html
@@ -3,6 +3,6 @@
Reports any null literals which are used as the argument for a throw statement.
<!-- tooltip end -->
<p>
-<small>New in 11, Powered by InspectionGadgets</small>
+<small>New in 11</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/NumberEquality.html b/plugins/InspectionGadgets/src/inspectionDescriptions/NumberEquality.html
index 5c3882e..29933a8 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/NumberEquality.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/NumberEquality.html
@@ -6,6 +6,6 @@
of two ints.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/NumericToString.html b/plugins/InspectionGadgets/src/inspectionDescriptions/NumericToString.html
index 1a891c7..0597ea6 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/NumericToString.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/NumericToString.html
@@ -4,6 +4,6 @@
incorrect in an internationalized environment.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ObjectAllocationInLoop.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ObjectAllocationInLoop.html
index ef4d99c..a48c8fd 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ObjectAllocationInLoop.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ObjectAllocationInLoop.html
@@ -5,6 +5,6 @@
and performance issues.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ObjectEquality.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ObjectEquality.html
index c3635d1..3dccf4b 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ObjectEquality.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ObjectEquality.html
@@ -10,6 +10,6 @@
Use the checkboxes below to indicate whether uses of <b>==</b> between objects of
an enumerated type, class type or types with private constructors should be reported by this inspection.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ObjectEqualsNull.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ObjectEqualsNull.html
index 9505676..f23ba92 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ObjectEqualsNull.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ObjectEqualsNull.html
@@ -4,6 +4,6 @@
as an argument. The semantics of such calls are almost certainly not what was intended.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ObjectNotify.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ObjectNotify.html
index a57222d..544d1fa 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ObjectNotify.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ObjectNotify.html
@@ -4,6 +4,6 @@
<b>notifyAll()</b> is a better choice. See Doug Lea's <I>Concurrent Programming in Java</I> for a discussion.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ObjectToString.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ObjectToString.html
index 849511a..fe1fdfb 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ObjectToString.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ObjectToString.html
@@ -7,6 +7,6 @@
<b>java.lang.Object</b> are ignored by this inspection.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ObsoleteCollection.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ObsoleteCollection.html
index 570a5dc..6d32ac0 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ObsoleteCollection.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ObsoleteCollection.html
@@ -10,6 +10,6 @@
as an argument to a method or assigned to a variable that requires the obsolete type.
Enabling this option is potentially quite processor intensive.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/OctalAndDecimalIntegersMixed.html b/plugins/InspectionGadgets/src/inspectionDescriptions/OctalAndDecimalIntegersMixed.html
index 9abbbeb..c656c92 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/OctalAndDecimalIntegersMixed.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/OctalAndDecimalIntegersMixed.html
@@ -5,6 +5,6 @@
that some of them are zero-padded, and will thus be interpreted by the Java compiler as octal.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/OctalLiteral.html b/plugins/InspectionGadgets/src/inspectionDescriptions/OctalLiteral.html
index 1c2febc..96269d0 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/OctalLiteral.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/OctalLiteral.html
@@ -4,6 +4,6 @@
use of octal literals, as they may be easily confused with decimal literals.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/OnDemandImport.html b/plugins/InspectionGadgets/src/inspectionDescriptions/OnDemandImport.html
index 94892c8..c218c6a 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/OnDemandImport.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/OnDemandImport.html
@@ -6,6 +6,6 @@
for off-line reporting on code bases that you don't intend to change.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/OrredNotEqualExpression.html b/plugins/InspectionGadgets/src/inspectionDescriptions/OrredNotEqualExpression.html
index 4381133..be0921a 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/OrredNotEqualExpression.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/OrredNotEqualExpression.html
@@ -6,6 +6,6 @@
<code>x != a && x != b</code>
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/OverloadedMethodsWithSameNumberOfParameters.html b/plugins/InspectionGadgets/src/inspectionDescriptions/OverloadedMethodsWithSameNumberOfParameters.html
index b39b639..f1b17c7 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/OverloadedMethodsWithSameNumberOfParameters.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/OverloadedMethodsWithSameNumberOfParameters.html
@@ -6,6 +6,6 @@
<p>
Use the checkbox below to ignore overloaded methods whose parameter types are definitely incompatible.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/OverloadedVarargsMethod.html b/plugins/InspectionGadgets/src/inspectionDescriptions/OverloadedVarargsMethod.html
index 52e274e..4961418 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/OverloadedVarargsMethod.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/OverloadedVarargsMethod.html
@@ -5,6 +5,6 @@
as it is often not clear which overloading gets called.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/OverlyComplexArithmeticExpression.html b/plugins/InspectionGadgets/src/inspectionDescriptions/OverlyComplexArithmeticExpression.html
index 26c746a..53b8d17 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/OverlyComplexArithmeticExpression.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/OverlyComplexArithmeticExpression.html
@@ -6,6 +6,6 @@
<p>
Use the field below to specify the maximum number of terms allowed in an arithmetic expression.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/OverlyComplexBooleanExpression.html b/plugins/InspectionGadgets/src/inspectionDescriptions/OverlyComplexBooleanExpression.html
index fc6f4a1..435f69f 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/OverlyComplexBooleanExpression.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/OverlyComplexBooleanExpression.html
@@ -7,6 +7,6 @@
<p>
Use the checkbox below to ignore boolean expressions which use only a single boolean operator repeatedly.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/OverlyLargePrimitiveArrayInitializer.html b/plugins/InspectionGadgets/src/inspectionDescriptions/OverlyLargePrimitiveArrayInitializer.html
index c74b61d..f7c2988 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/OverlyLargePrimitiveArrayInitializer.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/OverlyLargePrimitiveArrayInitializer.html
@@ -13,6 +13,6 @@
Use the field below to specify the maximum number of elements to allow in
primitive array initializers.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/OverlyStrongTypeCast.html b/plugins/InspectionGadgets/src/inspectionDescriptions/OverlyStrongTypeCast.html
index 4136181..4031b6a 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/OverlyStrongTypeCast.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/OverlyStrongTypeCast.html
@@ -7,6 +7,6 @@
intentionally using an overly strong cast to cause a <b>ClassCastException</b> to be generated. Use caution.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/OverridableMethodCallDuringObjectConstruction.html b/plugins/InspectionGadgets/src/inspectionDescriptions/OverridableMethodCallDuringObjectConstruction.html
index 2e72abd..30964f8 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/OverridableMethodCallDuringObjectConstruction.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/OverridableMethodCallDuringObjectConstruction.html
@@ -13,6 +13,6 @@
<i>Abstract method called during object construction</i> report overlapping problem sets and only one should be enabled at a time
to prevent duplicate warnings.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/OverriddenMethodCallDuringObjectConstruction.html b/plugins/InspectionGadgets/src/inspectionDescriptions/OverriddenMethodCallDuringObjectConstruction.html
index 5d9b867..f2a7803 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/OverriddenMethodCallDuringObjectConstruction.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/OverriddenMethodCallDuringObjectConstruction.html
@@ -12,6 +12,6 @@
<i>Abstract method called during object construction</i> report overlapping problem sets and only one should be enabled at a time
to prevent duplicate warnings.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/PackageDotHtmlMayBePackageInfo.html b/plugins/InspectionGadgets/src/inspectionDescriptions/PackageDotHtmlMayBePackageInfo.html
index 4182182..cbf1c73 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/PackageDotHtmlMayBePackageInfo.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/PackageDotHtmlMayBePackageInfo.html
@@ -10,6 +10,6 @@
the package.html file, since the Javadoc tool would ignore it then anyway.
<!-- tooltip end -->
<p>
-<small>New in 10.0.3, Powered by InspectionGadgets</small>
+<small>New in 10.0.3</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/PackageInMultipleModules.html b/plugins/InspectionGadgets/src/inspectionDescriptions/PackageInMultipleModules.html
index c0ebd48b5..3a98ce6 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/PackageInMultipleModules.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/PackageInMultipleModules.html
@@ -4,6 +4,6 @@
Since this inspection requires global code analysis, it is only available in batch inspection mode.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/PackageNamingConvention.html b/plugins/InspectionGadgets/src/inspectionDescriptions/PackageNamingConvention.html
index 55fce2a..24f590b 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/PackageNamingConvention.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/PackageNamingConvention.html
@@ -7,6 +7,6 @@
Use the fields below to specify minimum length, maximum length and regular expression expected for method parameter names
(Regular expressions are in standard <b>java.util.regex</b> format).
<p>
-<small>New in 11, Powered by InspectionGadgets</small>
+<small>New in 11</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/PackageVisibleField.html b/plugins/InspectionGadgets/src/inspectionDescriptions/PackageVisibleField.html
index abae2e4..4036ae3 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/PackageVisibleField.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/PackageVisibleField.html
@@ -4,6 +4,6 @@
Constants (i.e. variables marked <b>static</b> and <b>final</b>) are not reported.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/PackageVisibleInnerClass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/PackageVisibleInnerClass.html
index 94796c5d..7bcb911a 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/PackageVisibleInnerClass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/PackageVisibleInnerClass.html
@@ -7,6 +7,6 @@
<p>
Use the seconds checkbox below to ignore package-local inner interface.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/PackageWithTooFewClasses.html b/plugins/InspectionGadgets/src/inspectionDescriptions/PackageWithTooFewClasses.html
index 83df05e..8c22904 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/PackageWithTooFewClasses.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/PackageWithTooFewClasses.html
@@ -6,6 +6,6 @@
<p>
Use the field below to specify the minimum number of classes a package may have before triggering this inspection.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/PackageWithTooManyClasses.html b/plugins/InspectionGadgets/src/inspectionDescriptions/PackageWithTooManyClasses.html
index f93d3c6..32532d7 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/PackageWithTooManyClasses.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/PackageWithTooManyClasses.html
@@ -7,6 +7,6 @@
<p>
Use the field below to specify the maximum number of classes a package may have before triggering this inspection.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ParameterHidingMemberVariable.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ParameterHidingMemberVariable.html
index 977c631..6c713d6 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ParameterHidingMemberVariable.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ParameterHidingMemberVariable.html
@@ -5,6 +5,6 @@
Such a parameter name may be confusing.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ParameterNameDiffersFromOverriddenParameter.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ParameterNameDiffersFromOverriddenParameter.html
index 120087f..490362c 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ParameterNameDiffersFromOverriddenParameter.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ParameterNameDiffersFromOverriddenParameter.html
@@ -9,6 +9,6 @@
a single character long or come from a library method should be ignored. Both can be useful if
you do not wish to be bound by dubious naming conventions used in libraries.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ParameterNamingConvention.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ParameterNamingConvention.html
index 9557e33..0cb4af1 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ParameterNamingConvention.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ParameterNamingConvention.html
@@ -5,8 +5,8 @@
<!-- tooltip end -->
<p>
Use the fields below to specify minimum length, maximum length and regular expression expected for method parameter names.
-(Regular expressions are in standard <b>java.util.regex</b> format.)
+Specify <b>0</b> to not check the length of names. Regular expressions are in standard <b>java.util.regex</b> format.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ParameterOfConcreteClass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ParameterOfConcreteClass.html
index 7c815a9..9cd5a0e 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ParameterOfConcreteClass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ParameterOfConcreteClass.html
@@ -7,6 +7,6 @@
<p>
Use the checkbox below to have this inspection ignore method parameters whose type is an abstract class.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ParameterizedParametersStaticCollection.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ParameterizedParametersStaticCollection.html
index 80ce3d9..d1674e5 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ParameterizedParametersStaticCollection.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ParameterizedParametersStaticCollection.html
@@ -4,6 +4,6 @@
data provider method annotated with @Parameterized.Parameters
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ParametersPerConstructor.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ParametersPerConstructor.html
index 97c9c40..01b680e 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ParametersPerConstructor.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ParametersPerConstructor.html
@@ -9,6 +9,6 @@
Use the combobox below to specify if the inspection should ignore private, package local & private or protected, package local and
private constructors
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ParametersPerMethod.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ParametersPerMethod.html
index 6d6075e..6058e04 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ParametersPerMethod.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ParametersPerMethod.html
@@ -7,6 +7,6 @@
<p>
Use the field below to specify the maximum number of parameters a method is allowed to have.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/PlaceholderCountMatchesArgumentCount.html b/plugins/InspectionGadgets/src/inspectionDescriptions/PlaceholderCountMatchesArgumentCount.html
index a89605b..aaa60cd 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/PlaceholderCountMatchesArgumentCount.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/PlaceholderCountMatchesArgumentCount.html
@@ -4,6 +4,6 @@
does not match the number of other arguments to the logging call.
<!-- tooltip end -->
<p>
-<small>New in 12.1, Powered by InspectionGadgets</small>
+<small>New in 12.1</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/PointlessArithmeticExpression.html b/plugins/InspectionGadgets/src/inspectionDescriptions/PointlessArithmeticExpression.html
index b63273a..051e0a2 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/PointlessArithmeticExpression.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/PointlessArithmeticExpression.html
@@ -7,6 +7,6 @@
intended to do.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/PointlessBitwiseExpression.html b/plugins/InspectionGadgets/src/inspectionDescriptions/PointlessBitwiseExpression.html
index e15ae99..89ceca3 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/PointlessBitwiseExpression.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/PointlessBitwiseExpression.html
@@ -7,6 +7,6 @@
intended to do.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/PointlessBooleanExpression.html b/plugins/InspectionGadgets/src/inspectionDescriptions/PointlessBooleanExpression.html
index 30ec458..61ada91 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/PointlessBooleanExpression.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/PointlessBooleanExpression.html
@@ -10,6 +10,6 @@
<p>
Use the checkbox below to ignore named constants when determining if an expression is pointless.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/PointlessIndexOfComparison.html b/plugins/InspectionGadgets/src/inspectionDescriptions/PointlessIndexOfComparison.html
index c25efb9..30bcd44 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/PointlessIndexOfComparison.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/PointlessIndexOfComparison.html
@@ -5,6 +5,6 @@
is comparing the result of <b>.indexOf()</b> with numbers less than -1.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/PointlessNullCheck.html b/plugins/InspectionGadgets/src/inspectionDescriptions/PointlessNullCheck.html
index 8d94468..9c47a0d 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/PointlessNullCheck.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/PointlessNullCheck.html
@@ -9,6 +9,6 @@
<pre><code> if (x instanceof String) { ... }</code></pre>
<!-- tooltip end -->
<p>
-<small>New in 11, Powered by InspectionGadgets</small>
+<small>New in 11</small>
</body>
</html>
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/PrimitiveArrayArgumentToVariableArgMethod.html b/plugins/InspectionGadgets/src/inspectionDescriptions/PrimitiveArrayArgumentToVariableArgMethod.html
index b9ee138..4016a74 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/PrimitiveArrayArgumentToVariableArgMethod.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/PrimitiveArrayArgumentToVariableArgMethod.html
@@ -6,6 +6,6 @@
element being boxed, as might be expected.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/PrivateMemberAccessBetweenOuterAndInnerClass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/PrivateMemberAccessBetweenOuterAndInnerClass.html
index c630bf2..815bfa6 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/PrivateMemberAccessBetweenOuterAndInnerClass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/PrivateMemberAccessBetweenOuterAndInnerClass.html
@@ -11,6 +11,6 @@
member package local, thus allowing direct access without the creation of synthetic accessor methods.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ProtectedField.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ProtectedField.html
index e58b23e..3f57e82 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ProtectedField.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ProtectedField.html
@@ -4,6 +4,6 @@
Constants (i.e. variables marked <b>static</b> and <b>final</b>) are not reported.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ProtectedInnerClass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ProtectedInnerClass.html
index 330a2ee..971296c 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ProtectedInnerClass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ProtectedInnerClass.html
@@ -7,6 +7,6 @@
<p>
Use the seconds checkbox below to ignore <b>protected</b> inner interface.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ProtectedMemberInFinalClass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ProtectedMemberInFinalClass.html
index 81f7909..a5234a1 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ProtectedMemberInFinalClass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ProtectedMemberInFinalClass.html
@@ -5,6 +5,6 @@
or package-visible instead.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/PublicConstructor.html b/plugins/InspectionGadgets/src/inspectionDescriptions/PublicConstructor.html
index 2275db5..b4898e4 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/PublicConstructor.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/PublicConstructor.html
@@ -4,6 +4,6 @@
<b>static</b> factory methods. This way the implementation can be swapped out without affecting the call sites.
<!-- tooltip end -->
<p>
-<small>New in 12, Powered by InspectionGadgets</small>
+<small>New in 12</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/PublicConstructorInNonPublicClass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/PublicConstructorInNonPublicClass.html
index 852ce2ed..e4190f0 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/PublicConstructorInNonPublicClass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/PublicConstructorInNonPublicClass.html
@@ -4,6 +4,6 @@
classes that are declared <b>public</b>.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/PublicField.html b/plugins/InspectionGadgets/src/inspectionDescriptions/PublicField.html
index db0c523..6915037 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/PublicField.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/PublicField.html
@@ -8,6 +8,6 @@
<p>
Use the checkbox below to ignore <b>public</b> <b>final</b> fields of an <b>enum</b> type.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/PublicFieldAccessedInSynchronizedContext.html b/plugins/InspectionGadgets/src/inspectionDescriptions/PublicFieldAccessedInSynchronizedContext.html
index 6df4728..9a68f73 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/PublicFieldAccessedInSynchronizedContext.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/PublicFieldAccessedInSynchronizedContext.html
@@ -5,6 +5,6 @@
access may result in unexpectedly inconsistent data structures.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/PublicInnerClass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/PublicInnerClass.html
index 64b5ad2..9ca9715f 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/PublicInnerClass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/PublicInnerClass.html
@@ -7,6 +7,6 @@
<p>
Use the seconds checkbox below to ignore <b>public</b> inner interface.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/PublicMethodNotExposedInInterface.html b/plugins/InspectionGadgets/src/inspectionDescriptions/PublicMethodNotExposedInInterface.html
index e9562ee..e0cf044 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/PublicMethodNotExposedInInterface.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/PublicMethodNotExposedInInterface.html
@@ -11,6 +11,6 @@
Use the checkbox below to ignore methods of which the containing class does not
implement a non-library interface.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/PublicMethodWithoutLogging.html b/plugins/InspectionGadgets/src/inspectionDescriptions/PublicMethodWithoutLogging.html
index 6002b36..293498b 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/PublicMethodWithoutLogging.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/PublicMethodWithoutLogging.html
@@ -8,6 +8,6 @@
Public methods which do not contain a call to a method of a variable with the type of one of the classes specified,
will be reported by this inspection.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/PublicStaticArrayField.html b/plugins/InspectionGadgets/src/inspectionDescriptions/PublicStaticArrayField.html
index f95b329f..3c0d14d 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/PublicStaticArrayField.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/PublicStaticArrayField.html
@@ -5,6 +5,6 @@
hazard, as their contents may be modified, even if the field is declared as <b>final</b>.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/PublicStaticCollectionField.html b/plugins/InspectionGadgets/src/inspectionDescriptions/PublicStaticCollectionField.html
index 368b609..113ccbe 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/PublicStaticCollectionField.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/PublicStaticCollectionField.html
@@ -5,6 +5,6 @@
hazard, as their contents may be modified, even if the field is declared as <b>final</b>.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/QuestionableName.html b/plugins/InspectionGadgets/src/inspectionDescriptions/QuestionableName.html
index d9ae47c..b5c6ef6 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/QuestionableName.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/QuestionableName.html
@@ -7,6 +7,6 @@
<p>
Use the list below to specify names which should be reported
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/RandomDoubleForRandomInteger.html b/plugins/InspectionGadgets/src/inspectionDescriptions/RandomDoubleForRandomInteger.html
index 2f1c40e..e60d301 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/RandomDoubleForRandomInteger.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/RandomDoubleForRandomInteger.html
@@ -6,6 +6,6 @@
<b>java.util.Random.getInt()</b> is more efficient.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/RawUseOfParameterizedType.html b/plugins/InspectionGadgets/src/inspectionDescriptions/RawUseOfParameterizedType.html
index c12c6c3..a919fce 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/RawUseOfParameterizedType.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/RawUseOfParameterizedType.html
@@ -14,6 +14,6 @@
<p>
Use the third checkbox to ignore raw types in places where parameterized types would not be compilable
(for example in array creation expressions)
-<p><small>Powered by InspectionGadgets</small>
+<p>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ReadObjectAndWriteObjectPrivate.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ReadObjectAndWriteObjectPrivate.html
index 7c8caaa..7442b27 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ReadObjectAndWriteObjectPrivate.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ReadObjectAndWriteObjectPrivate.html
@@ -5,6 +5,6 @@
have greater visibility than that.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ReadObjectInitialization.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ReadObjectInitialization.html
index 9fb16da..33e03a2 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ReadObjectInitialization.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ReadObjectInitialization.html
@@ -7,6 +7,6 @@
as uninitialized incorrectly. Variables reported as initialized will always be initialized.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ReadResolveAndWriteReplaceProtected.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ReadResolveAndWriteReplaceProtected.html
index 96617fa..694f086 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ReadResolveAndWriteReplaceProtected.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ReadResolveAndWriteReplaceProtected.html
@@ -6,6 +6,6 @@
declared <b>private</b>, instead.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/RecordStoreResource.html b/plugins/InspectionGadgets/src/inspectionDescriptions/RecordStoreResource.html
index ae185d9..1f995d5 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/RecordStoreResource.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/RecordStoreResource.html
@@ -8,6 +8,6 @@
be inadvertently leaked if an exception is thrown before the resource is closed.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/RedundantFieldInitialization.html b/plugins/InspectionGadgets/src/inspectionDescriptions/RedundantFieldInitialization.html
index 1026a24..ab3b33b 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/RedundantFieldInitialization.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/RedundantFieldInitialization.html
@@ -4,6 +4,6 @@
the same values that the JVM would initialize them to by default.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/RedundantImplements.html b/plugins/InspectionGadgets/src/inspectionDescriptions/RedundantImplements.html
index 2553166..b0d7a7e 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/RedundantImplements.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/RedundantImplements.html
@@ -5,6 +5,6 @@
of that class. Such declarations are unnecessary, and may be safely removed.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/RedundantImport.html b/plugins/InspectionGadgets/src/inspectionDescriptions/RedundantImport.html
index 9b19d2b..194c99d 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/RedundantImport.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/RedundantImport.html
@@ -7,6 +7,6 @@
for off-line reporting on code bases that you don't intend to change.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/RedundantMethodOverride.html b/plugins/InspectionGadgets/src/inspectionDescriptions/RedundantMethodOverride.html
index cb0767c..108eee1 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/RedundantMethodOverride.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/RedundantMethodOverride.html
@@ -4,6 +4,6 @@
to its super method. Such a method is redundant and probably a coding error.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/RedundantStringFormatCall.html b/plugins/InspectionGadgets/src/inspectionDescriptions/RedundantStringFormatCall.html
index a9d0a87..8e16d63 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/RedundantStringFormatCall.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/RedundantStringFormatCall.html
@@ -5,6 +5,6 @@
the string.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ReflectionForUnavailableAnnotation.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ReflectionForUnavailableAnnotation.html
index 42ef1cd..a8312d0 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ReflectionForUnavailableAnnotation.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ReflectionForUnavailableAnnotation.html
@@ -7,6 +7,6 @@
but is easy to do inadvertently.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/RefusedBequest.html b/plugins/InspectionGadgets/src/inspectionDescriptions/RefusedBequest.html
index aae5e4b..e496e08 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/RefusedBequest.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/RefusedBequest.html
@@ -6,6 +6,6 @@
from <b>java.lang.Object</b> are not reported by this inspection.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ReplaceAllDot.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ReplaceAllDot.html
index 55ca588..0cc8440 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ReplaceAllDot.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ReplaceAllDot.html
@@ -7,6 +7,6 @@
More probably, <b>replaceAll("\.", ...)</b> was intended.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ReplaceAssignmentWithOperatorAssignment.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ReplaceAssignmentWithOperatorAssignment.html
index 0404e0f..b8f9d9d 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ReplaceAssignmentWithOperatorAssignment.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ReplaceAssignmentWithOperatorAssignment.html
@@ -8,6 +8,6 @@
and <b>||</b>. Replacing conditional operators with operator
assignment modifies the semantics of the expression.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ResultOfObjectAllocationIgnored.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ResultOfObjectAllocationIgnored.html
index a07bfe7..7970e18 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ResultOfObjectAllocationIgnored.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ResultOfObjectAllocationIgnored.html
@@ -5,6 +5,6 @@
evidence of a very odd object initialization strategy.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ResultSetIndexZero.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ResultSetIndexZero.html
index a126da41..281a053 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ResultSetIndexZero.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ResultSetIndexZero.html
@@ -5,6 +5,6 @@
0, and accessing column 0 is a common error in JDBC programming.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ReturnFromFinallyBlock.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ReturnFromFinallyBlock.html
index 4c9f0cd..48c1caf 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ReturnFromFinallyBlock.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ReturnFromFinallyBlock.html
@@ -5,6 +5,6 @@
tremendously complicate debugging.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ReturnNull.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ReturnNull.html
index d6c5f43..70255c1 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ReturnNull.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ReturnNull.html
@@ -12,6 +12,6 @@
<b>null</b> values on array returns, collection
object returns, plain object returns, or a combination of the three.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ReturnOfCollectionField.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ReturnOfCollectionField.html
index 38bc67a..b755982 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ReturnOfCollectionField.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ReturnOfCollectionField.html
@@ -6,6 +6,6 @@
reasons, this construct is inherently bug-prone.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ReturnOfDateField.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ReturnOfDateField.html
index 3667f76..ea0cd11 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ReturnOfDateField.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ReturnOfDateField.html
@@ -11,6 +11,6 @@
Use the checkbox below to ignore private methods returning a <b>java.lang.Date</b> or
<b>java.lang.Calendar</b> field.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ReturnThis.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ReturnThis.html
index 8995be9..fb0993f 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ReturnThis.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ReturnThis.html
@@ -6,6 +6,6 @@
Such chains are frowned upon by many coding standards.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ReuseOfLocalVariable.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ReuseOfLocalVariable.html
index 1916f1f..e974039 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ReuseOfLocalVariable.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ReuseOfLocalVariable.html
@@ -8,6 +8,6 @@
reuse local variables for the sake of brevity.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/RuntimeExec.html b/plugins/InspectionGadgets/src/inspectionDescriptions/RuntimeExec.html
index ef5e0a7..e266c7c 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/RuntimeExec.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/RuntimeExec.html
@@ -5,6 +5,6 @@
between operating systems.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/RuntimeExecWithNonConstantString.html b/plugins/InspectionGadgets/src/inspectionDescriptions/RuntimeExecWithNonConstantString.html
index a91fdf2..cea8224 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/RuntimeExecWithNonConstantString.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/RuntimeExecWithNonConstantString.html
@@ -5,6 +5,6 @@
Constructed execution strings are a common source of security breaches.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SafeLock.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SafeLock.html
index 053b379..49a0dfa 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SafeLock.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SafeLock.html
@@ -5,6 +5,6 @@
be inadvertently leaked if an exception is thrown before the resource is closed.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SamePackageImport.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SamePackageImport.html
index 9949eef..356ca83 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SamePackageImport.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SamePackageImport.html
@@ -7,6 +7,6 @@
code bases that you don't intend to change.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SerialPersistentFieldsWithWrongSignature.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SerialPersistentFieldsWithWrongSignature.html
index 6d8e158..69aaa63 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SerialPersistentFieldsWithWrongSignature.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SerialPersistentFieldsWithWrongSignature.html
@@ -4,6 +4,6 @@
is not declared <b>private static final ObjectStreamField</font ></b>.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SerialVersionUIDNotStaticFinal.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SerialVersionUIDNotStaticFinal.html
index ed4a47c..b993a2ed 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SerialVersionUIDNotStaticFinal.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SerialVersionUIDNotStaticFinal.html
@@ -4,6 +4,6 @@
is not declared <b>private static final long</font ></b>.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SerializableClassInSecureContext.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SerializableClassInSecureContext.html
index ca87c7c..9a3f69c 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SerializableClassInSecureContext.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SerializableClassInSecureContext.html
@@ -8,6 +8,6 @@
<p>
Use the checkbox below to ignore classes extending <b>Throwable</b> directly.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SerializableHasSerialVersionUIDField.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SerializableHasSerialVersionUIDField.html
index 0d18028..7800aa4 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SerializableHasSerialVersionUIDField.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SerializableHasSerialVersionUIDField.html
@@ -11,6 +11,6 @@
<p>
Use the checkbox below to ignore <b>Serializable</b> anonymous classes.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SerializableHasSerializationMethods.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SerializableHasSerializationMethods.html
index d1bd814..b8f29ef 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SerializableHasSerializationMethods.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SerializableHasSerializationMethods.html
@@ -13,6 +13,6 @@
Serializable from a superclass, are not intended for serialization. Such classes would lead this
inspection to report unnecessarily.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SerializableInnerClassHasSerialVersionUIDField.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SerializableInnerClassHasSerialVersionUIDField.html
index a5f9f1f..d00c4ec 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SerializableInnerClassHasSerialVersionUIDField.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SerializableInnerClassHasSerialVersionUIDField.html
@@ -14,6 +14,6 @@
Serializable from a superclass, are not intended for serialization. Such classes would lead this
inspection to report unnecessarily.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SerializableInnerClassWithNonSerializableOuterClass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SerializableInnerClassWithNonSerializableOuterClass.html
index e859764..084cc82 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SerializableInnerClassWithNonSerializableOuterClass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SerializableInnerClassWithNonSerializableOuterClass.html
@@ -10,6 +10,6 @@
Serializable from a superclass, are not intended for serialization. Such classes would lead this
inspection to report unnecessarily.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SerializableWithUnconstructableAncestor.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SerializableWithUnconstructableAncestor.html
index bce817e..4831220 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SerializableWithUnconstructableAncestor.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SerializableWithUnconstructableAncestor.html
@@ -4,6 +4,6 @@
a no-argument constructor. Such classes can not be deserialized.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SetReplaceableByEnumSet.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SetReplaceableByEnumSet.html
index 215af92..31d138d 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SetReplaceableByEnumSet.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SetReplaceableByEnumSet.html
@@ -7,6 +7,6 @@
that those of other sets, as the underlying data structure is a simple bitmap.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SetupCallsSuperSetup.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SetupCallsSuperSetup.html
index d4b99ca..114eaf5 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SetupCallsSuperSetup.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SetupCallsSuperSetup.html
@@ -4,6 +4,6 @@
does not call <b>super.setUp()</b>.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SetupIsPublicVoidNoArg.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SetupIsPublicVoidNoArg.html
index f5368b2..5b7b333 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SetupIsPublicVoidNoArg.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SetupIsPublicVoidNoArg.html
@@ -7,6 +7,6 @@
and will not be executed by JUnit tests runners.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ShiftOutOfRange.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ShiftOutOfRange.html
index 502947e..4fb67e0 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ShiftOutOfRange.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ShiftOutOfRange.html
@@ -7,6 +7,6 @@
a coding error.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SignalWithoutCorrespondingAwait.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SignalWithoutCorrespondingAwait.html
index 330165e..3924366 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SignalWithoutCorrespondingAwait.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SignalWithoutCorrespondingAwait.html
@@ -6,6 +6,6 @@
can be found. Only calls which target fields of the current class are reported by this inspection.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SimpleDateFormatWithoutLocale.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SimpleDateFormatWithoutLocale.html
index c918a6f..3b1b6c2 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SimpleDateFormatWithoutLocale.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SimpleDateFormatWithoutLocale.html
@@ -5,6 +5,6 @@
Such calls are usually incorrect in an internationalized environment.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SimplifiableAnnotation.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SimplifiableAnnotation.html
index b65732f..94cd40b 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SimplifiableAnnotation.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SimplifiableAnnotation.html
@@ -5,6 +5,6 @@
of the annotation are also reported.
<!-- tooltip end -->
<p>
-<small>New in 10, Powered by InspectionGadgets </small>
+<small>New in 10 </small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SimplifiableConditionalExpression.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SimplifiableConditionalExpression.html
index 510ea1e..e35cdfd 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SimplifiableConditionalExpression.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SimplifiableConditionalExpression.html
@@ -8,6 +8,6 @@
<b>!<i>condition</i> && <i>foo</i></b>, respectively.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SimplifiableEqualsExpression.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SimplifiableEqualsExpression.html
index 5554a5d..ded9547 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SimplifiableEqualsExpression.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SimplifiableEqualsExpression.html
@@ -13,6 +13,6 @@
</pre></code>
<!-- tooltip end -->
<p>
-<small>New in 11, Powered by InspectionGadgets </small>
+<small>New in 11 </small>
</body>
</html>
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SimplifiableIfStatement.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SimplifiableIfStatement.html
index 8c7e4ac..398d5cb 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SimplifiableIfStatement.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SimplifiableIfStatement.html
@@ -11,6 +11,6 @@
<b>return !<i>condition</i> || <i>foo</i></b>, respectively.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SimplifiableJUnitAssertion.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SimplifiableJUnitAssertion.html
index 1da5159a3..ef6237b 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SimplifiableJUnitAssertion.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SimplifiableJUnitAssertion.html
@@ -5,6 +5,6 @@
calls will normally give better error messages in case of test failure than <b>assertTrue</b> can.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SingleCharacterStartsWith.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SingleCharacterStartsWith.html
index 49b39dd..098ca5f 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SingleCharacterStartsWith.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SingleCharacterStartsWith.html
@@ -11,6 +11,6 @@
code clarity, it is recommended to do so only inside tight loops.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SingleClassImport.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SingleClassImport.html
index 037e99c..45f5bd6 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SingleClassImport.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SingleClassImport.html
@@ -6,6 +6,6 @@
for off-line reporting on code bases that you don't intend to change.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/Singleton.html b/plugins/InspectionGadgets/src/inspectionDescriptions/Singleton.html
index 16a837b..dabc6ee 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/Singleton.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/Singleton.html
@@ -6,6 +6,6 @@
and their presence may indicate a lack of object-oriented design.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SizeReplaceableByIsEmpty.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SizeReplaceableByIsEmpty.html
index 79843f5..e6b6aa7 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SizeReplaceableByIsEmpty.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SizeReplaceableByIsEmpty.html
@@ -8,6 +8,6 @@
<p>
Use the checkbox below to ignore any expressions which would be replaced with '!isEmpty()'.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SleepWhileHoldingLock.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SleepWhileHoldingLock.html
index cd88c35..74bef54 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SleepWhileHoldingLock.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SleepWhileHoldingLock.html
@@ -7,6 +7,6 @@
as it will release the lock held.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SocketResource.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SocketResource.html
index 462d319..834e624 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SocketResource.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SocketResource.html
@@ -13,6 +13,6 @@
block. This style is less desirable because it is more verbose than opening a Socket
in front of a try block.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/StandardVariableNames.html b/plugins/InspectionGadgets/src/inspectionDescriptions/StandardVariableNames.html
index 786b264..f10817b 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/StandardVariableNames.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/StandardVariableNames.html
@@ -14,6 +14,6 @@
<!-- tooltip end -->
<p>
Use the checkbox below to ignore parameter names which are identical to the parameter name from a direct super method.
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/StaticCallOnSubclass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/StaticCallOnSubclass.html
index e30d25a..0103f5b 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/StaticCallOnSubclass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/StaticCallOnSubclass.html
@@ -6,6 +6,6 @@
may be confusing, and may indicate a subtle confusion of inheritance and overriding.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/StaticCollection.html b/plugins/InspectionGadgets/src/inspectionDescriptions/StaticCollection.html
index e645ae3..27728b3 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/StaticCollection.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/StaticCollection.html
@@ -5,6 +5,6 @@
therefore prohibited by some coding standards.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/StaticFieldCanBeMovedToUse.html b/plugins/InspectionGadgets/src/inspectionDescriptions/StaticFieldCanBeMovedToUse.html
index 2d2f885..03da449 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/StaticFieldCanBeMovedToUse.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/StaticFieldCanBeMovedToUse.html
@@ -5,6 +5,6 @@
Since this inspection requires global code analysis, it is only available in batch inspection mode.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/StaticFieldReferenceOnSubclass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/StaticFieldReferenceOnSubclass.html
index 913b818..a2b4d2c 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/StaticFieldReferenceOnSubclass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/StaticFieldReferenceOnSubclass.html
@@ -6,6 +6,6 @@
may be confusing, and may indicate a subtle confusion of inheritance and overriding.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/StaticImport.html b/plugins/InspectionGadgets/src/inspectionDescriptions/StaticImport.html
index 1904a0f..1a2762d 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/StaticImport.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/StaticImport.html
@@ -4,6 +4,6 @@
Such import statements are not supported under Java 1.4 or earlier JVMs.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/StaticInheritance.html b/plugins/InspectionGadgets/src/inspectionDescriptions/StaticInheritance.html
index 4c623de..c8259f7 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/StaticInheritance.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/StaticInheritance.html
@@ -5,6 +5,6 @@
information.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/StaticMethodNamingConvention.html b/plugins/InspectionGadgets/src/inspectionDescriptions/StaticMethodNamingConvention.html
index be324e1..c0ced0b 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/StaticMethodNamingConvention.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/StaticMethodNamingConvention.html
@@ -5,8 +5,8 @@
<!-- tooltip end -->
<p>
Use the fields below to specify minimum length, maximum length and regular expression expected for static method names.
-(Regular expressions are in standard <b>java.util.regex</b> format.)
+Specify <b>0</b> to not check the length of names. Regular expressions are in standard <b>java.util.regex</b> format.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/StaticMethodOnlyUsedInOneClass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/StaticMethodOnlyUsedInOneClass.html
index 50c0795..e308935 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/StaticMethodOnlyUsedInOneClass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/StaticMethodOnlyUsedInOneClass.html
@@ -9,6 +9,6 @@
<p>
Use the checkbox below to have this inspection not report when the static method is only used from a test class.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/StaticNonFinalField.html b/plugins/InspectionGadgets/src/inspectionDescriptions/StaticNonFinalField.html
index 649cd17..173d0b0 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/StaticNonFinalField.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/StaticNonFinalField.html
@@ -3,6 +3,6 @@
Reports non-<b>final</b> <b>static</b> fields.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/StaticSuite.html b/plugins/InspectionGadgets/src/inspectionDescriptions/StaticSuite.html
index 830ed19..9b9308a 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/StaticSuite.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/StaticSuite.html
@@ -4,6 +4,6 @@
are not declared <b>static</b>.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/StaticVariableInitialization.html b/plugins/InspectionGadgets/src/inspectionDescriptions/StaticVariableInitialization.html
index 38fba0a..3dfd1c9 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/StaticVariableInitialization.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/StaticVariableInitialization.html
@@ -8,6 +8,6 @@
<p>
Use the checkbox below to indicate whether you want uninitialized primitive fields to be reported.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/StaticVariableNamingConvention.html b/plugins/InspectionGadgets/src/inspectionDescriptions/StaticVariableNamingConvention.html
index 54040ee..a269935 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/StaticVariableNamingConvention.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/StaticVariableNamingConvention.html
@@ -6,8 +6,8 @@
<!-- tooltip end -->
<p>
Use the fields below to specify minimum length, maximum length and regular expression expected for static variable names.
-(Regular expressions are in standard <b>java.util.regex</b> format.)
+Specify <b>0</b> to not check the length of names. Regular expressions are in standard <b>java.util.regex</b> format.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/StaticVariableOfConcreteClass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/StaticVariableOfConcreteClass.html
index bb26904..1a67d2b 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/StaticVariableOfConcreteClass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/StaticVariableOfConcreteClass.html
@@ -7,6 +7,6 @@
<p>
Use the checkbox below to have this inspection ignore static fields whose type is an abstract class.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/StaticVariableUninitializedUse.html b/plugins/InspectionGadgets/src/inspectionDescriptions/StaticVariableUninitializedUse.html
index 0fe8905..d2f04be 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/StaticVariableUninitializedUse.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/StaticVariableUninitializedUse.html
@@ -8,6 +8,6 @@
<p>
Use the checkbox below to indicate whether you want uninitialized primitive fields to be reported.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/StringBufferField.html b/plugins/InspectionGadgets/src/inspectionDescriptions/StringBufferField.html
index 5f0822d..a66e77b 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/StringBufferField.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/StringBufferField.html
@@ -6,6 +6,6 @@
memory leaks.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/StringBufferMustHaveInitialCapacity.html b/plugins/InspectionGadgets/src/inspectionDescriptions/StringBufferMustHaveInitialCapacity.html
index 9bd6586..6c85364 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/StringBufferMustHaveInitialCapacity.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/StringBufferMustHaveInitialCapacity.html
@@ -7,6 +7,6 @@
memory copied when capacity is exceeded
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/StringBufferReplaceableByString.html b/plugins/InspectionGadgets/src/inspectionDescriptions/StringBufferReplaceableByString.html
index 9a9217f..9ab43de 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/StringBufferReplaceableByString.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/StringBufferReplaceableByString.html
@@ -5,6 +5,6 @@
more efficient code.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/StringBufferReplaceableByStringBuilder.html b/plugins/InspectionGadgets/src/inspectionDescriptions/StringBufferReplaceableByStringBuilder.html
index 58fb44e..a40000c 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/StringBufferReplaceableByStringBuilder.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/StringBufferReplaceableByStringBuilder.html
@@ -9,6 +9,6 @@
language level of 5.0 or higher.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/StringBufferToStringInConcatenation.html b/plugins/InspectionGadgets/src/inspectionDescriptions/StringBufferToStringInConcatenation.html
index 57b96ed..215f450 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/StringBufferToStringInConcatenation.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/StringBufferToStringInConcatenation.html
@@ -6,6 +6,6 @@
as of JDK1.4.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/StringCompareTo.html b/plugins/InspectionGadgets/src/inspectionDescriptions/StringCompareTo.html
index 6f340b0..d4bf66f 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/StringCompareTo.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/StringCompareTo.html
@@ -4,6 +4,6 @@
incorrect in an internationalized environment.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/StringConcatenation.html b/plugins/InspectionGadgets/src/inspectionDescriptions/StringConcatenation.html
index 3a4adf73..2de1513 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/StringConcatenation.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/StringConcatenation.html
@@ -24,6 +24,6 @@
<p>
Use the seventh checkbox to ignore string concatentations inside <b>toString()</b> methods.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/StringConcatenationArgumentToLogCall.html b/plugins/InspectionGadgets/src/inspectionDescriptions/StringConcatenationArgumentToLogCall.html
index c792888..06353a6 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/StringConcatenationArgumentToLogCall.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/StringConcatenationArgumentToLogCall.html
@@ -5,6 +5,6 @@
It is recommended to use a parameterized log message instead, which will not be evaluated when logging is disabled.
<!-- tooltip end -->
<p>
-<small>New in 12, Powered by InspectionGadgets </small>
+<small>New in 12 </small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/StringConcatenationInFormatCall.html b/plugins/InspectionGadgets/src/inspectionDescriptions/StringConcatenationInFormatCall.html
index b937ac3..c0a4b96 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/StringConcatenationInFormatCall.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/StringConcatenationInFormatCall.html
@@ -10,6 +10,6 @@
or <b>java.io.PrintStream</b>.
<!-- tooltip end -->
<p>
-<small>New in 10.0.2, Powered by InspectionGadgets </small>
+<small>New in 10.0.2 </small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/StringConcatenationInLoops.html b/plugins/InspectionGadgets/src/inspectionDescriptions/StringConcatenationInLoops.html
index 2306538..8d5603d 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/StringConcatenationInLoops.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/StringConcatenationInLoops.html
@@ -9,6 +9,6 @@
Use the checkbox below to indicate that this inspection should only warn when the same variable
is appended to inside the loop.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/StringConcatenationInMessageFormatCall.html b/plugins/InspectionGadgets/src/inspectionDescriptions/StringConcatenationInMessageFormatCall.html
index cc41692..e886a7f 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/StringConcatenationInMessageFormatCall.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/StringConcatenationInMessageFormatCall.html
@@ -6,6 +6,6 @@
a '+' when a ',' was meant.
<!-- tooltip end -->
<p>
-<small>New in 10.0.2, Powered by InspectionGadgets </small>
+<small>New in 10.0.2 </small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/StringConcatenationInsideStringBufferAppend.html b/plugins/InspectionGadgets/src/inspectionDescriptions/StringConcatenationInsideStringBufferAppend.html
index 098fd3e..04949cc 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/StringConcatenationInsideStringBufferAppend.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/StringConcatenationInsideStringBufferAppend.html
@@ -14,6 +14,6 @@
worsen performance.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/StringConcatenationMissingWhitespace.html b/plugins/InspectionGadgets/src/inspectionDescriptions/StringConcatenationMissingWhitespace.html
index 5d8ebdf..e63c62f 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/StringConcatenationMissingWhitespace.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/StringConcatenationMissingWhitespace.html
@@ -10,6 +10,6 @@
<p>
Use the checkbox below to have this inspection only report when both the left and right side of the concatenation are literals.
<p>
-<small>New in 12, Powered by InspectionGadgets</small>
+<small>New in 12</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/StringConstructor.html b/plugins/InspectionGadgets/src/inspectionDescriptions/StringConstructor.html
index a8ea2df..cbb5936 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/StringConstructor.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/StringConstructor.html
@@ -13,6 +13,6 @@
amount of garbage to stay in memory if the substring is small in relation to the
original <b>String</b>.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/StringEquality.html b/plugins/InspectionGadgets/src/inspectionDescriptions/StringEquality.html
index 54a5f36..0a4cc9b 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/StringEquality.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/StringEquality.html
@@ -4,6 +4,6 @@
rather than the <b>".equals()"</b> method.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/StringEquals.html b/plugins/InspectionGadgets/src/inspectionDescriptions/StringEquals.html
index be1fa66..d9ad1a0 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/StringEquals.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/StringEquals.html
@@ -4,6 +4,6 @@
incorrect in an internationalized environment.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/StringEqualsEmptyString.html b/plugins/InspectionGadgets/src/inspectionDescriptions/StringEqualsEmptyString.html
index f8cbc8f..5709d55 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/StringEqualsEmptyString.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/StringEqualsEmptyString.html
@@ -5,6 +5,6 @@
by comparing its <b>.length()</b> to zero instead.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/StringEqualsIgnoreCase.html b/plugins/InspectionGadgets/src/inspectionDescriptions/StringEqualsIgnoreCase.html
index 14563db..3556e64 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/StringEqualsIgnoreCase.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/StringEqualsIgnoreCase.html
@@ -4,6 +4,6 @@
incorrect in an internationalized environment.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/StringReplaceableByStringBuffer.html b/plugins/InspectionGadgets/src/inspectionDescriptions/StringReplaceableByStringBuffer.html
index 65299e0..e7d3b3e 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/StringReplaceableByStringBuffer.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/StringReplaceableByStringBuffer.html
@@ -8,6 +8,6 @@
Use the checkbox below to specify that this inspection should only warn when the variable is appended
to in a loop.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/StringToString.html b/plugins/InspectionGadgets/src/inspectionDescriptions/StringToString.html
index 8d20e87..6e9f5d1 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/StringToString.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/StringToString.html
@@ -4,6 +4,6 @@
This is entirely redundant.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/StringToUpperWithoutLocale.html b/plugins/InspectionGadgets/src/inspectionDescriptions/StringToUpperWithoutLocale.html
index badf65f0..9b9cac6 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/StringToUpperWithoutLocale.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/StringToUpperWithoutLocale.html
@@ -6,6 +6,6 @@
Such calls are usually incorrect in an internationalized environment.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/StringTokenizer.html b/plugins/InspectionGadgets/src/inspectionDescriptions/StringTokenizer.html
index 2c96a81..47e474d 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/StringTokenizer.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/StringTokenizer.html
@@ -4,6 +4,6 @@
<b>StringTokenizer</b> are incorrect in an internationalized environment.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SubstringZero.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SubstringZero.html
index 6c0935a..0b43202 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SubstringZero.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SubstringZero.html
@@ -4,6 +4,6 @@
with a constant argument equal to zero. Such calls are completely redundant, and may be removed.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SubtractionInCompareTo.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SubtractionInCompareTo.html
index 6ef50b2..245c8da 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SubtractionInCompareTo.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SubtractionInCompareTo.html
@@ -1,13 +1,13 @@
<html>
<body>
Reports subtraction in
-<b>compareTo()</b> methods. While it is a common idiom to
-use the results of integer subtraction as the return of a <b>compareTo()</b>
+<b>compareTo()</b> methods and methods implementing <b>java.util.Comparator.compare()</b>. While it is a common idiom to
+use the results of integer subtraction as the result of a <b>compareTo()</b>
method, this construct may cause subtle and difficult bugs in cases of integer overflow.
Comparing the integer values directly and returning -1, 0, or 1 is better practice in almost
all cases.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SuppressionAnnotation.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SuppressionAnnotation.html
index 433d272..bbdcd04 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SuppressionAnnotation.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SuppressionAnnotation.html
@@ -3,6 +3,6 @@
Reports any inspection suppression comments or annotations.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SuspiciousArrayCast.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SuspiciousArrayCast.html
index 048f9cd..0176c71 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SuspiciousArrayCast.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SuspiciousArrayCast.html
@@ -4,6 +4,6 @@
a cast is legal at compile time but may fail with a <b>ClassCastException</b> at runtime.
<!-- tooltip end -->
<p>
-<small>New in 12, Powered by InspectionGadgets</small>
+<small>New in 12</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SuspiciousIndentAfterControlStatement.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SuspiciousIndentAfterControlStatement.html
index eef66c1..6970fec 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SuspiciousIndentAfterControlStatement.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SuspiciousIndentAfterControlStatement.html
@@ -5,6 +5,6 @@
statement, when in fact it will be executed after the control statement.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SuspiciousSystemArraycopy.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SuspiciousSystemArraycopy.html
index c72448c..cf2186e 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SuspiciousSystemArraycopy.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SuspiciousSystemArraycopy.html
@@ -9,6 +9,6 @@
</ul>
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SuspiciousToArrayCall.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SuspiciousToArrayCall.html
index 5c7917f..baeec6f 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SuspiciousToArrayCall.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SuspiciousToArrayCall.html
@@ -6,6 +6,6 @@
the type parameter of the collection declaration.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SwitchStatement.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SwitchStatement.html
index c9f8277..124eb01 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SwitchStatement.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SwitchStatement.html
@@ -4,6 +4,6 @@
<b>switch</b> statements are often (but not always) indicators of poor object-oriented design.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SwitchStatementDensity.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SwitchStatementDensity.html
index dc3a4a2..f1c6772 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SwitchStatementDensity.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SwitchStatementDensity.html
@@ -5,6 +5,6 @@
may be confusing, and should probably be refactored.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SwitchStatementWithConfusingDeclaration.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SwitchStatementWithConfusingDeclaration.html
index bbc2cfd..e205502 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SwitchStatementWithConfusingDeclaration.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SwitchStatementWithConfusingDeclaration.html
@@ -4,6 +4,6 @@
and used in a different branch. Such declarations can be extremely confusing.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SwitchStatementWithTooFewBranches.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SwitchStatementWithTooFewBranches.html
index 0832a57..a87a213 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SwitchStatementWithTooFewBranches.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SwitchStatementWithTooFewBranches.html
@@ -6,6 +6,6 @@
<p>
Use the field below to specify the minimum number of <b>case</b> labels expected.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SwitchStatementWithTooManyBranches.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SwitchStatementWithTooManyBranches.html
index d1853c9..e579a11 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SwitchStatementWithTooManyBranches.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SwitchStatementWithTooManyBranches.html
@@ -5,6 +5,6 @@
<p>
Use the field below to specify the maximum number of <b>case</b> labels expected.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SwitchStatementsWithoutDefault.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SwitchStatementsWithoutDefault.html
index f2fca67..6f9a2a8 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SwitchStatementsWithoutDefault.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SwitchStatementsWithoutDefault.html
@@ -4,6 +4,6 @@
<b>default</b> labels.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SynchronizationOnLocalVariableOrMethodParameter.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SynchronizationOnLocalVariableOrMethodParameter.html
index 2f2293d..f306639 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SynchronizationOnLocalVariableOrMethodParameter.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SynchronizationOnLocalVariableOrMethodParameter.html
@@ -6,6 +6,6 @@
will usually be clearer if synchronization on a field is used.
<!-- tooltip end -->
<p>
-<small>New in 8, Powered by InspectionGadgets</small>
+<small>New in 8</small>
</body>
</html>
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SynchronizationOnStaticField.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SynchronizationOnStaticField.html
index 54eb793..537ac4d 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SynchronizationOnStaticField.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SynchronizationOnStaticField.html
@@ -4,6 +4,6 @@
synchronization on static fields can lead to bad performance because of contention.
<!-- tooltip end -->
<p>
-<small>New in 10, Powered by InspectionGadgets</small>
+<small>New in 10</small>
</body>
</html>
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SynchronizeOnLock.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SynchronizeOnLock.html
index da66174..69fd9e8 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SynchronizeOnLock.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SynchronizeOnLock.html
@@ -6,6 +6,6 @@
and <b>.unlock()</b> should be used instead.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SynchronizeOnNonFinalField.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SynchronizeOnNonFinalField.html
index c9afbaf..2ae175c 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SynchronizeOnNonFinalField.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SynchronizeOnNonFinalField.html
@@ -5,6 +5,6 @@
threads may be locking on different objects even when operating on the same object.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SynchronizeOnThis.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SynchronizeOnThis.html
index 155d75d..fcae0c9 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SynchronizeOnThis.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SynchronizeOnThis.html
@@ -9,6 +9,6 @@
locking on a private instance variable, access to which can be completely controlled.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SynchronizedMethod.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SynchronizedMethod.html
index 2016494..b5b65e6 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SynchronizedMethod.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SynchronizedMethod.html
@@ -4,6 +4,6 @@
prohibit the use of the <b>synchronized</b> modifier, in favor of <b>synchronized</b> statements.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SynchronizedOnLiteralObject.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SynchronizedOnLiteralObject.html
index cedf2b4..7f29ead 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SynchronizedOnLiteralObject.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SynchronizedOnLiteralObject.html
@@ -11,6 +11,6 @@
<p>
Use the checkbox below to warn on any synchronization on String, Character, Boolean and Number objects.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SystemExit.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SystemExit.html
index 81f2a5d..f9ba84d 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SystemExit.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SystemExit.html
@@ -7,6 +7,6 @@
<p>
Use the checkbox below to ignore calls in main methods.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SystemGC.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SystemGC.html
index 11f41d0..a11afef 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SystemGC.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SystemGC.html
@@ -5,6 +5,6 @@
a bad idea in production code, and can result in serious performance problems.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SystemGetenv.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SystemGetenv.html
index c06e4b3..97a50e8 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SystemGetenv.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SystemGetenv.html
@@ -4,6 +4,6 @@
Calls to <b>System.getenv()</b> are inherently unportable.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SystemOutErr.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SystemOutErr.html
index 5d0e7fa..b5eb5a4 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SystemOutErr.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SystemOutErr.html
@@ -5,6 +5,6 @@
logging facility.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SystemProperties.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SystemProperties.html
index 27ee4b6..4ca681d 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SystemProperties.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SystemProperties.html
@@ -5,6 +5,6 @@
Accesses to System properties should be closely examined in any security audit.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SystemRunFinalizersOnExit.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SystemRunFinalizersOnExit.html
index c8501fe..973829c 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SystemRunFinalizersOnExit.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SystemRunFinalizersOnExit.html
@@ -6,6 +6,6 @@
It is deprecated, and its use strongly discouraged.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/SystemSetSecurityManager.html b/plugins/InspectionGadgets/src/inspectionDescriptions/SystemSetSecurityManager.html
index 8bd05c1..da03d68 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/SystemSetSecurityManager.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/SystemSetSecurityManager.html
@@ -4,6 +4,6 @@
While often benign, any call to <b>System.setSecurityManager()</b> should be closely examined in any security audit.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/TailRecursion.html b/plugins/InspectionGadgets/src/inspectionDescriptions/TailRecursion.html
index d3bac93..ec0a399 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/TailRecursion.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/TailRecursion.html
@@ -6,6 +6,6 @@
performance characteristics on different virtual machines.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/TeardownCallsSuperTeardown.html b/plugins/InspectionGadgets/src/inspectionDescriptions/TeardownCallsSuperTeardown.html
index c4768af..369631f 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/TeardownCallsSuperTeardown.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/TeardownCallsSuperTeardown.html
@@ -4,6 +4,6 @@
does not call <b>super.tearDown()</b>.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/TeardownIsPublicVoidNoArg.html b/plugins/InspectionGadgets/src/inspectionDescriptions/TeardownIsPublicVoidNoArg.html
index a1664d9..9070b10 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/TeardownIsPublicVoidNoArg.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/TeardownIsPublicVoidNoArg.html
@@ -7,6 +7,6 @@
and will not be executed by JUnit tests runners.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/TestCaseInProductCode.html b/plugins/InspectionGadgets/src/inspectionDescriptions/TestCaseInProductCode.html
index 9731f4c..6b0c6069 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/TestCaseInProductCode.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/TestCaseInProductCode.html
@@ -5,6 +5,6 @@
into production.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/TestCaseWithConstructor.html b/plugins/InspectionGadgets/src/inspectionDescriptions/TestCaseWithConstructor.html
index fb507d7..c28ce2c 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/TestCaseWithConstructor.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/TestCaseWithConstructor.html
@@ -4,6 +4,6 @@
of JUnit test cases should be done in <b>setUp()</b> methods instead.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/TestCaseWithNoTestMethods.html b/plugins/InspectionGadgets/src/inspectionDescriptions/TestCaseWithNoTestMethods.html
index 2387aaa..b3511627 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/TestCaseWithNoTestMethods.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/TestCaseWithNoTestMethods.html
@@ -7,6 +7,6 @@
Use the checkbox below to specify that test cases which have super classes with
test methods should be ignored by this inspection.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/TestMethodInProductCode.html b/plugins/InspectionGadgets/src/inspectionDescriptions/TestMethodInProductCode.html
index f63c7e9..deb66cd 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/TestMethodInProductCode.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/TestMethodInProductCode.html
@@ -5,6 +5,6 @@
into production.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/TestMethodIsPublicVoidNoArg.html b/plugins/InspectionGadgets/src/inspectionDescriptions/TestMethodIsPublicVoidNoArg.html
index 137eb6c..a31b39a 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/TestMethodIsPublicVoidNoArg.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/TestMethodIsPublicVoidNoArg.html
@@ -7,6 +7,6 @@
JUnit test runners.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/TestMethodWithoutAssertion.html b/plugins/InspectionGadgets/src/inspectionDescriptions/TestMethodWithoutAssertion.html
index f99a055..0b89a8e 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/TestMethodWithoutAssertion.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/TestMethodWithoutAssertion.html
@@ -6,6 +6,6 @@
qualify as assertions.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/TextLabelInSwitchStatement.html b/plugins/InspectionGadgets/src/inspectionDescriptions/TextLabelInSwitchStatement.html
index e7e8188..9a0cb52 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/TextLabelInSwitchStatement.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/TextLabelInSwitchStatement.html
@@ -13,6 +13,6 @@
</pre>
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ThisEscapedInConstructor.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ThisEscapedInConstructor.html
index 4598e74..2610f5f 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ThisEscapedInConstructor.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ThisEscapedInConstructor.html
@@ -7,6 +7,6 @@
available in a context in which it is not guaranteed to be initialized.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ThreadDeathRethrown.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ThreadDeathRethrown.html
index e970d7c..d531ad2 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ThreadDeathRethrown.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ThreadDeathRethrown.html
@@ -4,6 +4,6 @@
<b>java.lang.ThreadDeath</b> which do not rethrow the exception.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ThreadDumpStack.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ThreadDumpStack.html
index dda1146..f19930f 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ThreadDumpStack.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ThreadDumpStack.html
@@ -5,6 +5,6 @@
or replaced by a more robust logging facility.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ThreadLocalNotStaticFinal.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ThreadLocalNotStaticFinal.html
index c99538d..2cb9e55 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ThreadLocalNotStaticFinal.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ThreadLocalNotStaticFinal.html
@@ -9,6 +9,6 @@
<p>
This inspection has a quick fix to make the field <b>static final</b>
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ThreadPriority.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ThreadPriority.html
index 1684bf2..c18839b 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ThreadPriority.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ThreadPriority.html
@@ -6,6 +6,6 @@
if they are used at all.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ThreadRun.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ThreadRun.html
index d499f04..12b1305 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ThreadRun.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ThreadRun.html
@@ -4,6 +4,6 @@
While occasionally intended, this is usually a mistake, with <b>start()</b> intended instead.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ThreadStartInConstruction.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ThreadStartInConstruction.html
index 2938c76..bfc1626 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ThreadStartInConstruction.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ThreadStartInConstruction.html
@@ -6,6 +6,6 @@
any initialization logic of their own before the thread has launched.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ThreadStopSuspendResume.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ThreadStopSuspendResume.html
index 6c15a88..c921b99 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ThreadStopSuspendResume.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ThreadStopSuspendResume.html
@@ -6,6 +6,6 @@
discouraged.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ThreadWithDefaultRunMethod.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ThreadWithDefaultRunMethod.html
index b6f719a..880d695 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ThreadWithDefaultRunMethod.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ThreadWithDefaultRunMethod.html
@@ -5,6 +5,6 @@
useful.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ThreadYield.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ThreadYield.html
index 2d37629..5b9ed38 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ThreadYield.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ThreadYield.html
@@ -5,6 +5,6 @@
and is often used by inexperienced programmers to mask race conditions.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ThreeNegationsPerMethod.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ThreeNegationsPerMethod.html
index 2bcdced..8b30ae5 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ThreeNegationsPerMethod.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ThreeNegationsPerMethod.html
@@ -6,6 +6,6 @@
<p>
Use the checkbox below to disable this inspection within 'equals()' methods.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ThrowCaughtLocally.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ThrowCaughtLocally.html
index fd79e47..ed69083 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ThrowCaughtLocally.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ThrowCaughtLocally.html
@@ -5,6 +5,6 @@
statements as a "goto" to change the local flow of control is both confusing and likely to have poor performance.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ThrowFromFinallyBlock.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ThrowFromFinallyBlock.html
index 5608323..e43d8d98 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ThrowFromFinallyBlock.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ThrowFromFinallyBlock.html
@@ -5,6 +5,6 @@
tremendously complicate debugging.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ThrowableInstanceNeverThrown.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ThrowableInstanceNeverThrown.html
index 63f65d9..29125e8 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ThrowableInstanceNeverThrown.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ThrowableInstanceNeverThrown.html
@@ -5,6 +5,6 @@
is never actually thrown. Most often this is the result of a simple mistake.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ThrowablePrintStackTrace.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ThrowablePrintStackTrace.html
index 4a60995..269cb64 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ThrowablePrintStackTrace.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ThrowablePrintStackTrace.html
@@ -5,6 +5,6 @@
or replaced by a more robust logging facility.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ThrowableResultOfMethodCallIgnored.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ThrowableResultOfMethodCallIgnored.html
index c29d801..0a3468b 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ThrowableResultOfMethodCallIgnored.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ThrowableResultOfMethodCallIgnored.html
@@ -6,6 +6,6 @@
as factory methods for exceptions and the result should be thrown.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ThrownExceptionsPerMethod.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ThrownExceptionsPerMethod.html
index 4c94a5d..8a6b032 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ThrownExceptionsPerMethod.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ThrownExceptionsPerMethod.html
@@ -7,6 +7,6 @@
<p>
Use the field below to specify the maximum number of <b>throws</b> clauses a method might have.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ThrowsRuntimeException.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ThrowsRuntimeException.html
index eb857bc..56f3199 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ThrowsRuntimeException.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ThrowsRuntimeException.html
@@ -4,6 +4,6 @@
Declaration of unchecked exceptions are not required and may be removed or moved to a Javadoc <b>@throws</b> tag.
<!-- tooltip end -->
<p>
-<small>New in 11, Powered by InspectionGadgets</small>
+<small>New in 11</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/TimeToString.html b/plugins/InspectionGadgets/src/inspectionDescriptions/TimeToString.html
index 3e5cc27..451f29e 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/TimeToString.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/TimeToString.html
@@ -4,6 +4,6 @@
incorrect in an internationalized environment.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ToArrayCallWithZeroLengthArrayArgument.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ToArrayCallWithZeroLengthArrayArgument.html
index 632ac66..22e7f1c 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ToArrayCallWithZeroLengthArrayArgument.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ToArrayCallWithZeroLengthArrayArgument.html
@@ -8,6 +8,6 @@
in an array of at least the size of the collection itself.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/TodoComment.html b/plugins/InspectionGadgets/src/inspectionDescriptions/TodoComment.html
index 9db3ffe..9a951cd 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/TodoComment.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/TodoComment.html
@@ -6,6 +6,6 @@
be used in batch mode.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/TooBroadCatch.html b/plugins/InspectionGadgets/src/inspectionDescriptions/TooBroadCatch.html
index ffbe0df..14b73fa 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/TooBroadCatch.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/TooBroadCatch.html
@@ -11,6 +11,6 @@
Use the third checkbox below to ignore any exceptions which hide other exceptions, but which may be thrown and thus
are technically not overly broad.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/TooBroadScope.html b/plugins/InspectionGadgets/src/inspectionDescriptions/TooBroadScope.html
index d8f371a..0e394bf 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/TooBroadScope.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/TooBroadScope.html
@@ -10,6 +10,6 @@
constructor has non-local side-effects, but make it more powerful in that it can find objects
that are allocated before necessary, causing increased memory usage.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/TooBroadThrows.html b/plugins/InspectionGadgets/src/inspectionDescriptions/TooBroadThrows.html
index 2760504..0a0b078 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/TooBroadThrows.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/TooBroadThrows.html
@@ -13,6 +13,6 @@
Use the fourth checkbox below to ignore any exceptions which hide other exceptions, but which may be thrown from the method body and thus
are technically not overly broad.
<p>
-<small>New in 10, Powered by InspectionGadgets</small>
+<small>New in 10</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/TransientFieldInNonSerializableClass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/TransientFieldInNonSerializableClass.html
index b11cb80..27dc334 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/TransientFieldInNonSerializableClass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/TransientFieldInNonSerializableClass.html
@@ -3,6 +3,6 @@
Reports <b>transient</b> fields in non-<b>Serializable</b> classes.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/TransientFieldNotInitialized.html b/plugins/InspectionGadgets/src/inspectionDescriptions/TransientFieldNotInitialized.html
index d974b33..131cd15 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/TransientFieldNotInitialized.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/TransientFieldNotInitialized.html
@@ -10,6 +10,6 @@
initialization and are not reported by this inspection.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/TrivialIf.html b/plugins/InspectionGadgets/src/inspectionDescriptions/TrivialIf.html
index 24161e2..4c31fbf9 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/TrivialIf.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/TrivialIf.html
@@ -17,6 +17,6 @@
</pre></code>
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/TrivialStringConcatenation.html b/plugins/InspectionGadgets/src/inspectionDescriptions/TrivialStringConcatenation.html
index 31e38d7..72a944c 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/TrivialStringConcatenation.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/TrivialStringConcatenation.html
@@ -5,6 +5,6 @@
an idiom for formatting non-String objects or primitives into Strings.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/TryFinallyCanBeTryWithResources.html b/plugins/InspectionGadgets/src/inspectionDescriptions/TryFinallyCanBeTryWithResources.html
index 28b8411..6cbca36 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/TryFinallyCanBeTryWithResources.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/TryFinallyCanBeTryWithResources.html
@@ -7,6 +7,6 @@
This inspection only reports if the project or module is configured to use a
language level of 7.0 or higher.
<!-- tooltip end -->
-<p><small>New in 10.5, Powered by InspectionGadgets</small>
+<p><small>New in 10.5</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/TryWithIdenticalCatches.html b/plugins/InspectionGadgets/src/inspectionDescriptions/TryWithIdenticalCatches.html
index 3b10d77..e9d9648 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/TryWithIdenticalCatches.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/TryWithIdenticalCatches.html
@@ -6,6 +6,6 @@
This inspection only reports if the project or module is configured to use a
language level of 7.0 or higher.
<!-- tooltip end -->
-<p><small>New in 10.5, Powered by InspectionGadgets</small>
+<p><small>New in 10.5</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/TypeMayBeWeakened.html b/plugins/InspectionGadgets/src/inspectionDescriptions/TypeMayBeWeakened.html
index abda9d4..4b59429 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/TypeMayBeWeakened.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/TypeMayBeWeakened.html
@@ -23,6 +23,6 @@
weakened to <b>java.lang.Object</b>. Weakening to
<b>java.lang.Object</b> is often not very useful.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/TypeParameterExtendsFinalClass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/TypeParameterExtendsFinalClass.html
index 3716bd2..17dbf12 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/TypeParameterExtendsFinalClass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/TypeParameterExtendsFinalClass.html
@@ -5,6 +5,6 @@
of the specified final class.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/TypeParameterExtendsObject.html b/plugins/InspectionGadgets/src/inspectionDescriptions/TypeParameterExtendsObject.html
index eb3b822..d0e968a 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/TypeParameterExtendsObject.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/TypeParameterExtendsObject.html
@@ -3,6 +3,6 @@
Reports any type parameters explicitly declared to extend <b>java.lang.Object</b>.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/TypeParameterHidesVisibleType.html b/plugins/InspectionGadgets/src/inspectionDescriptions/TypeParameterHidesVisibleType.html
index 6bfc108..8d9831a 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/TypeParameterHidesVisibleType.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/TypeParameterHidesVisibleType.html
@@ -4,6 +4,6 @@
identically to visible types in the current scope. Such a parameter name may be confusing.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/TypeParameterNamingConvention.html b/plugins/InspectionGadgets/src/inspectionDescriptions/TypeParameterNamingConvention.html
index c305e8a..24fe0d4 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/TypeParameterNamingConvention.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/TypeParameterNamingConvention.html
@@ -5,8 +5,8 @@
<!-- tooltip end -->
<p>
Use the fields below to specify minimum length, maximum length and regular expression expected for type parameter names.
-(Regular expressions are in standard <b>java.util.regex</b> format.)
+Specify <b>0</b> to not check the length of names. Regular expressions are in standard <b>java.util.regex</b> format.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnaryPlus.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnaryPlus.html
index 9425d50..698a8be 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnaryPlus.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnaryPlus.html
@@ -4,6 +4,6 @@
its presence may represent a coding error, particularly in combination with the increment operator, '++'.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UncheckedExceptionClass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UncheckedExceptionClass.html
index ef33d8f..1df2b81 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UncheckedExceptionClass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UncheckedExceptionClass.html
@@ -4,6 +4,6 @@
Certain coding standards require that all user-defined exception classes be checked.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnclearBinaryExpression.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnclearBinaryExpression.html
index 17ace83..837a1fb 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnclearBinaryExpression.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnclearBinaryExpression.html
@@ -5,6 +5,6 @@
of the different operators. This inspection has a quickfix which adds clarifying parentheses.
<!-- tooltip end -->
<p>
-<small>New in 11, Powered by InspectionGadgets</small>
+<small>New in 11</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnconditionalWait.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnconditionalWait.html
index 6bfd8e6..948a14b 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnconditionalWait.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnconditionalWait.html
@@ -10,6 +10,6 @@
are not necessarily incorrect, they are certainly worth examining.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnconstructableTestCase.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnconstructableTestCase.html
index 037bff55..85faeda 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnconstructableTestCase.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnconstructableTestCase.html
@@ -6,6 +6,6 @@
IDEA's.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessarilyQualifiedInnerClassAccess.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessarilyQualifiedInnerClassAccess.html
index 8e514db..d76730e 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessarilyQualifiedInnerClassAccess.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessarilyQualifiedInnerClassAccess.html
@@ -8,6 +8,6 @@
Use the checkbox below to ignore references to inner classes where the removal of the qualification
would require the addition of an import.
<p>
-<small>New in 10, Powered by InspectionGadgets</small>
+<small>New in 10</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessarilyQualifiedStaticUsage.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessarilyQualifiedStaticUsage.html
index 680c243..0532833 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessarilyQualifiedStaticUsage.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessarilyQualifiedStaticUsage.html
@@ -5,6 +5,6 @@
and may be safely removed.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessarilyQualifiedStaticallyImportedElement.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessarilyQualifiedStaticallyImportedElement.html
index 4d508ae..f0cb4d4 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessarilyQualifiedStaticallyImportedElement.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessarilyQualifiedStaticallyImportedElement.html
@@ -5,6 +5,6 @@
and can be removed.
<!-- tooltip end -->
<p>
-<small>New in 10, Powered by InspectionGadgets</small>
+<small>New in 10</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryBlockStatement.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryBlockStatement.html
index ffb4514..6a5af80 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryBlockStatement.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryBlockStatement.html
@@ -8,6 +8,6 @@
<p>
Use the checkbox below if you wish this inspection to ignore code blocks which are used as branches of switch statements.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryBoxing.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryBoxing.html
index 68d7fa5..b657195 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryBoxing.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryBoxing.html
@@ -7,6 +7,6 @@
language level of 5.0 or higher.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryCallToStringValueOf.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryCallToStringValueOf.html
index ecbdf6f..c5214ff 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryCallToStringValueOf.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryCallToStringValueOf.html
@@ -5,6 +5,6 @@
to string will be handled by the underlying library methods without an explicit call to <b>String.valueOf()</b>.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryConditionalExpression.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryConditionalExpression.html
index ae9cea2..f839cfb 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryConditionalExpression.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryConditionalExpression.html
@@ -5,6 +5,6 @@
to <b><i>condition</i></b> or <b>!<i>condition</i></b>, respectively.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryConstantArrayCreationExpression.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryConstantArrayCreationExpression.html
index 965c156..05cedc3 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryConstantArrayCreationExpression.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryConstantArrayCreationExpression.html
@@ -6,6 +6,6 @@
assigned to.
<!-- tooltip end -->
<p>
-<small>New in 8, Powered by InspectionGadgets</small>
+<small>New in 8</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryConstructor.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryConstructor.html
index 01a79e4..b7bff96 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryConstructor.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryConstructor.html
@@ -8,6 +8,6 @@
<p>
Use the checkbox below to ignore unnecessary constructors which have an annotation.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryContinue.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryContinue.html
index 91b16f2..442e854 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryContinue.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryContinue.html
@@ -6,6 +6,6 @@
At present, this inspection is disabled in JSP files.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryDefault.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryDefault.html
index a721c95..1772229 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryDefault.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryDefault.html
@@ -6,6 +6,6 @@
over enumerated types all of whose values have corresponding <b>case</b> branches.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryEnumModifier.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryEnumModifier.html
index fa804fd..6a3696d 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryEnumModifier.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryEnumModifier.html
@@ -4,6 +4,6 @@
enumerated classes.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryExplicitNumericCast.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryExplicitNumericCast.html
index 9a7756b..8ceb97a 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryExplicitNumericCast.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryExplicitNumericCast.html
@@ -4,6 +4,6 @@
implicitly by the compiler.
<!-- tooltip end -->
<p>
-<small>New in 11, Powered by InspectionGadgets</small>
+<small>New in 11</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryFinalOnLocalVariableOrParameter.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryFinalOnLocalVariableOrParameter.html
index 98769f4..e82f257 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryFinalOnLocalVariableOrParameter.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryFinalOnLocalVariableOrParameter.html
@@ -13,6 +13,6 @@
methods, which may be considered extra unnecessary, as such markings have no
effect on the implementation of these methods.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryFullyQualifiedName.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryFullyQualifiedName.html
index a0a5865..874c410 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryFullyQualifiedName.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryFullyQualifiedName.html
@@ -4,6 +4,6 @@
inspection will shorten the fully qualified names, adding import statements as necessary.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryInheritDoc.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryInheritDoc.html
index ec29484..4136b99 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryInheritDoc.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryInheritDoc.html
@@ -7,6 +7,6 @@
adds nothing.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryInterfaceModifier.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryInterfaceModifier.html
index 97fc114..d175954 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryInterfaceModifier.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryInterfaceModifier.html
@@ -3,6 +3,6 @@
Reports any redundant modifiers on interfaces or interface components.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryJavaDocLink.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryJavaDocLink.html
index 0cc0ef2..40187a9 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryJavaDocLink.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryJavaDocLink.html
@@ -12,6 +12,6 @@
to super methods. While a link to all super methods is automatically added by the
Javadoc tool, an inline link to the super method can occasionally be needed in
the text of the Javadoc.
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryLabelOnBreakStatement.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryLabelOnBreakStatement.html
index 14c4252..d3c8a27 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryLabelOnBreakStatement.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryLabelOnBreakStatement.html
@@ -4,6 +4,6 @@
labels.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryLabelOnContinueStatement.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryLabelOnContinueStatement.html
index ab14fcf..5d2588d 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryLabelOnContinueStatement.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryLabelOnContinueStatement.html
@@ -4,6 +4,6 @@
labels.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryLocalVariable.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryLocalVariable.html
index 9e75512..47edad8 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryLocalVariable.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryLocalVariable.html
@@ -13,6 +13,6 @@
<p>
Use the second checkbox below to have this inspection ignore variable which are annotated.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryParentheses.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryParentheses.html
index 76e07e9..be5f12a 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryParentheses.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryParentheses.html
@@ -14,6 +14,6 @@
of conditional expressions. Some coding standards specify that all such conditions
must be surrounded by parentheses.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryQualifierForThis.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryQualifierForThis.html
index 6500530..cc447be 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryQualifierForThis.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryQualifierForThis.html
@@ -8,6 +8,6 @@
<pre><code>OuterClass.<b>this</b>.foo();</code></pre>
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryReturn.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryReturn.html
index a7f8bf7..b740108 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryReturn.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryReturn.html
@@ -9,6 +9,6 @@
Use the checkbox below to let this inspection ignore <b>return</b> statements in the then branch of <b>if</b> statements
which also have an <b>else</b> branch.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessarySemicolon.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessarySemicolon.html
index 9dc34f8..dcf696e 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessarySemicolon.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessarySemicolon.html
@@ -4,6 +4,6 @@
class definitions. While valid Java, these semicolons are redundant, and may be removed.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessarySuperConstructor.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessarySuperConstructor.html
index b0d8512..11f8752 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessarySuperConstructor.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessarySuperConstructor.html
@@ -4,6 +4,6 @@
constructor as the first call of a constructor. Such calls are unnecessary, and may be removed.<p>
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessarySuperQualifier.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessarySuperQualifier.html
index df77d59..5c05f97 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessarySuperQualifier.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessarySuperQualifier.html
@@ -5,6 +5,6 @@
when the field or method of the super class is not overridden in the calling class.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryTemporaryOnConversionFromString.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryTemporaryOnConversionFromString.html
index f4526458..f6a80ed 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryTemporaryOnConversionFromString.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryTemporaryOnConversionFromString.html
@@ -13,6 +13,6 @@
</pre></code>
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryTemporaryOnConversionToString.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryTemporaryOnConversionToString.html
index e81c4f7..a9d3f4b 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryTemporaryOnConversionToString.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryTemporaryOnConversionToString.html
@@ -13,6 +13,6 @@
</pre></code>
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryThis.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryThis.html
index d2b583c..0fe889a 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryThis.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryThis.html
@@ -11,6 +11,6 @@
<p>
Use the checkbox below to ignore assignments to fields.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryToStringCall.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryToStringCall.html
index 69cfb61..ae5c1109 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryToStringCall.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryToStringCall.html
@@ -8,6 +8,6 @@
throwing a <b>NullPointerException</b>).
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryUnaryMinus.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryUnaryMinus.html
index b09b0cf..8085c97 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryUnaryMinus.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryUnaryMinus.html
@@ -14,6 +14,6 @@
</pre></code>
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryUnboxing.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryUnboxing.html
index c7be185..43d4462 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryUnboxing.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnnecessaryUnboxing.html
@@ -7,6 +7,6 @@
language level of 5.0 or higher.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnpredictableBigDecimalConstructorCall.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnpredictableBigDecimalConstructorCall.html
index 9fa3150..071311a 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnpredictableBigDecimalConstructorCall.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnpredictableBigDecimalConstructorCall.html
@@ -7,6 +7,6 @@
It is recommend to use the constructors which accept a String instead.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnqualifiedFieldAccess.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnqualifiedFieldAccess.html
index 750813d..484f50c 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnqualifiedFieldAccess.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnqualifiedFieldAccess.html
@@ -6,6 +6,6 @@
variable or parameter accesses.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnqualifiedInnerClassAccess.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnqualifiedInnerClassAccess.html
index fd5303b..917ae08 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnqualifiedInnerClassAccess.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnqualifiedInnerClassAccess.html
@@ -6,6 +6,6 @@
<p>
Use the checkbox below to ignore references to local inner classes that do not require an import.
<p>
-<small>New in 10, Powered by InspectionGadgets</small>
+<small>New in 10</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnqualifiedMethodAccess.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnqualifiedMethodAccess.html
index 0323cd8..c60f32d 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnqualifiedMethodAccess.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnqualifiedMethodAccess.html
@@ -3,6 +3,6 @@
Reports calls to non-static methods of the same object which are not qualified with <b>this</b>.
<!-- tooltip end -->
<p>
-<small>New in 11, Powered by InspectionGadgets</small>
+<small>New in 11</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnqualifiedStaticUsage.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnqualifiedStaticUsage.html
index 9b90ca7..bea5d3e 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnqualifiedStaticUsage.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnqualifiedStaticUsage.html
@@ -5,6 +5,6 @@
the same class as the call, but may be confusing.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnsecureRandomNumberGeneration.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnsecureRandomNumberGeneration.html
index bb70fe3..b25312f 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnsecureRandomNumberGeneration.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnsecureRandomNumberGeneration.html
@@ -6,6 +6,6 @@
random number generation.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnusedCatchParameter.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnusedCatchParameter.html
index b08ac58..131f651 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnusedCatchParameter.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnusedCatchParameter.html
@@ -10,6 +10,6 @@
<p>
Use the second checkbox below to ignore catch blocks in test code.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnusedImport.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnusedImport.html
index 4b4d2c2..15558c9 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnusedImport.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnusedImport.html
@@ -5,6 +5,6 @@
for off-line reporting on code bases that you don't intend to change.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UnusedLabel.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UnusedLabel.html
index 8913dae..189c5a2 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UnusedLabel.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UnusedLabel.html
@@ -3,6 +3,6 @@
Reports unused code labels.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UpperCaseFieldNameNotConstant.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UpperCaseFieldNameNotConstant.html
index b4cb57e..0ede842 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UpperCaseFieldNameNotConstant.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UpperCaseFieldNameNotConstant.html
@@ -5,6 +5,6 @@
are often the result of developer error.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UseOfAWTPeerClass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UseOfAWTPeerClass.html
index 82c4513..c46776e 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UseOfAWTPeerClass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UseOfAWTPeerClass.html
@@ -5,6 +5,6 @@
systems.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UseOfAnotherObjectsPrivateField.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UseOfAnotherObjectsPrivateField.html
index 8a6f05d..6e532ba 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UseOfAnotherObjectsPrivateField.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UseOfAnotherObjectsPrivateField.html
@@ -13,6 +13,6 @@
<p>
Use the second checkbox below to ignore accesses from an <b>equals()</b> method.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UseOfJDBCDriverClass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UseOfJDBCDriverClass.html
index 14fad1f..020abed 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UseOfJDBCDriverClass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UseOfJDBCDriverClass.html
@@ -5,6 +5,6 @@
resulting in loss of portability.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UseOfObsoleteAssert.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UseOfObsoleteAssert.html
index 07920d3..cd4ac9b 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UseOfObsoleteAssert.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UseOfObsoleteAssert.html
@@ -4,6 +4,6 @@
obsolete and the calls can be replaced by calls to methods from the <b>org.junit.Assert</b> class.
<!-- tooltip end -->
<p>
-<small>New in 11, Powered by InspectionGadgets</small>
+<small>New in 11</small>
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UseOfProcessBuilder.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UseOfProcessBuilder.html
index e8d7f4a..4d3fa3e 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UseOfProcessBuilder.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UseOfProcessBuilder.html
@@ -4,6 +4,6 @@
Uses of <b>ProcessBuilder</b> are inherently unportable between operating systems.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UseOfPropertiesAsHashtable.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UseOfPropertiesAsHashtable.html
index a51fee9..2dfbc5b 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UseOfPropertiesAsHashtable.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UseOfPropertiesAsHashtable.html
@@ -8,6 +8,6 @@
to prevent corruption of properties values with non-String data.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UseOfSunClasses.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UseOfSunClasses.html
index 8e94151..8c235b3 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UseOfSunClasses.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UseOfSunClasses.html
@@ -4,6 +4,6 @@
Such classes are non-portable between different JVM's.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UtilityClass.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UtilityClass.html
index 05adf75..b87816f 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UtilityClass.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UtilityClass.html
@@ -8,6 +8,6 @@
Use the list below to specify special annotations. Classes annotated with one of
these annotations will be ignored by this inspection.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UtilityClassWithPublicConstructor.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UtilityClassWithPublicConstructor.html
index fdae5e1..07fc751 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UtilityClassWithPublicConstructor.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UtilityClassWithPublicConstructor.html
@@ -5,6 +5,6 @@
constructor is confusing, and may lead to the class being inadvertently instantiated.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/UtilityClassWithoutPrivateConstructor.html b/plugins/InspectionGadgets/src/inspectionDescriptions/UtilityClassWithoutPrivateConstructor.html
index cf51280..3705904 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/UtilityClassWithoutPrivateConstructor.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/UtilityClassWithoutPrivateConstructor.html
@@ -10,6 +10,6 @@
<p>
Use the checkbox below to ignore classes which only have a main method and no other methods.
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/VarargParameter.html b/plugins/InspectionGadgets/src/inspectionDescriptions/VarargParameter.html
index cbbbe90..14fc3d0 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/VarargParameter.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/VarargParameter.html
@@ -4,6 +4,6 @@
Such methods are not supported under Java 1.4 or earlier JVMs.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/VariableNotUsedInsideIf.html b/plugins/InspectionGadgets/src/inspectionDescriptions/VariableNotUsedInsideIf.html
index b3b9357..45ab67d 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/VariableNotUsedInsideIf.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/VariableNotUsedInsideIf.html
@@ -8,6 +8,6 @@
<b>if</b> statement because of a typo.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/VolatileArrayField.html b/plugins/InspectionGadgets/src/inspectionDescriptions/VolatileArrayField.html
index 3c96f832..a202379 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/VolatileArrayField.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/VolatileArrayField.html
@@ -7,6 +7,6 @@
the JDK5.0 <b>java.util.concurrent.atomic</b> classes should be used instead.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/VolatileLongOrDoubleField.html b/plugins/InspectionGadgets/src/inspectionDescriptions/VolatileLongOrDoubleField.html
index bac61d5..90d5f41 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/VolatileLongOrDoubleField.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/VolatileLongOrDoubleField.html
@@ -6,6 +6,6 @@
are certain of your JVM, it is better to synchronized access to such fields rather than declare them <b>volatile</b>.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/WaitCalledOnCondition.html b/plugins/InspectionGadgets/src/inspectionDescriptions/WaitCalledOnCondition.html
index f1e1aa8..076a19d 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/WaitCalledOnCondition.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/WaitCalledOnCondition.html
@@ -6,6 +6,6 @@
<b>await()</b> method was intended instead.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/WaitNotInLoop.html b/plugins/InspectionGadgets/src/inspectionDescriptions/WaitNotInLoop.html
index 0bff8ad..f611371 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/WaitNotInLoop.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/WaitNotInLoop.html
@@ -5,6 +5,6 @@
returns. A loop is the clearest way to achieve this.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/WaitNotInSynchronizedContext.html b/plugins/InspectionGadgets/src/inspectionDescriptions/WaitNotInSynchronizedContext.html
index 121a02c..81b11b6 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/WaitNotInSynchronizedContext.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/WaitNotInSynchronizedContext.html
@@ -7,6 +7,6 @@
the containing method is called, but its worth looking at.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/WaitOrAwaitWithoutTimeout.html b/plugins/InspectionGadgets/src/inspectionDescriptions/WaitOrAwaitWithoutTimeout.html
index fc1b095..f1c406cb7 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/WaitOrAwaitWithoutTimeout.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/WaitOrAwaitWithoutTimeout.html
@@ -8,6 +8,6 @@
get called.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/WaitWhileHoldingTwoLocks.html b/plugins/InspectionGadgets/src/inspectionDescriptions/WaitWhileHoldingTwoLocks.html
index 3f66c1c..563c244 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/WaitWhileHoldingTwoLocks.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/WaitWhileHoldingTwoLocks.html
@@ -5,6 +5,6 @@
only frees locks on the its target, waiting with two locks held can easily lead to deadlock.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/WaitWithoutCorrespondingNotify.html b/plugins/InspectionGadgets/src/inspectionDescriptions/WaitWithoutCorrespondingNotify.html
index 998c746..a780704 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/WaitWithoutCorrespondingNotify.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/WaitWithoutCorrespondingNotify.html
@@ -6,6 +6,6 @@
can be found. Only calls which target fields of the current class are reported by this inspection.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/WhileCanBeForeach.html b/plugins/InspectionGadgets/src/inspectionDescriptions/WhileCanBeForeach.html
index a5a7f94..fa69c5c 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/WhileCanBeForeach.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/WhileCanBeForeach.html
@@ -8,6 +8,6 @@
language level of 5.0 or higher.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/WhileLoopSpinsOnField.html b/plugins/InspectionGadgets/src/inspectionDescriptions/WhileLoopSpinsOnField.html
index 4821456..d6fb8ee 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/WhileLoopSpinsOnField.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/WhileLoopSpinsOnField.html
@@ -8,6 +8,6 @@
field's value.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file
diff --git a/plugins/InspectionGadgets/src/inspectionDescriptions/ZeroLengthArrayInitialization.html b/plugins/InspectionGadgets/src/inspectionDescriptions/ZeroLengthArrayInitialization.html
index 7506803..61701a1 100644
--- a/plugins/InspectionGadgets/src/inspectionDescriptions/ZeroLengthArrayInitialization.html
+++ b/plugins/InspectionGadgets/src/inspectionDescriptions/ZeroLengthArrayInitialization.html
@@ -7,6 +7,6 @@
as it is assumed that those arrays are being used to implement array sharing.
<!-- tooltip end -->
<p>
-<small>Powered by InspectionGadgets</small>
+
</body>
</html>
\ No newline at end of file