Repository: amaembo/huntbugs Branch: master Commit: 05e7ebd511c9 Files: 339 Total size: 1.5 MB Directory structure: gitextract_tmwxzcoo/ ├── .gitattributes ├── .gitignore ├── .mailmap ├── .travis.yml ├── LICENSE ├── README.md ├── findbugs.txt ├── huntbugs/ │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings/ │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.m2e.core.prefs │ │ └── org.eclipse.pde.core.prefs │ ├── pom.xml │ └── src/ │ ├── main/ │ │ ├── java/ │ │ │ └── one/ │ │ │ └── util/ │ │ │ └── huntbugs/ │ │ │ ├── HuntBugs.java │ │ │ ├── analysis/ │ │ │ │ ├── AnalysisListener.java │ │ │ │ ├── AnalysisOptions.java │ │ │ │ ├── Context.java │ │ │ │ ├── ErrorMessage.java │ │ │ │ └── HuntBugsResult.java │ │ │ ├── assertions/ │ │ │ │ ├── AssertionData.java │ │ │ │ └── MemberAsserter.java │ │ │ ├── db/ │ │ │ │ ├── DeclaredAnnotations.java │ │ │ │ ├── FieldStats.java │ │ │ │ ├── Hierarchy.java │ │ │ │ ├── MethodStats.java │ │ │ │ └── Mutability.java │ │ │ ├── detect/ │ │ │ │ ├── AbandonedStream.java │ │ │ │ ├── AppendObjectOutputStream.java │ │ │ │ ├── ArrayRangeCheck.java │ │ │ │ ├── AtomicConcurrent.java │ │ │ │ ├── AverageComputation.java │ │ │ │ ├── BadMath.java │ │ │ │ ├── BadMethodCalls.java │ │ │ │ ├── BadMethodReferences.java │ │ │ │ ├── BadMonitorObject.java │ │ │ │ ├── CheckReturnValue.java │ │ │ │ ├── CloneContract.java │ │ │ │ ├── CompareContract.java │ │ │ │ ├── CompareUsage.java │ │ │ │ ├── ConditionChain.java │ │ │ │ ├── CovariantArrays.java │ │ │ │ ├── DeadLocalStore.java │ │ │ │ ├── DroppedExceptionObject.java │ │ │ │ ├── DubiousCatch.java │ │ │ │ ├── DuplicateAssignment.java │ │ │ │ ├── EasyMockProblems.java │ │ │ │ ├── EmptySync.java │ │ │ │ ├── EqualsContract.java │ │ │ │ ├── ExceptionalExpression.java │ │ │ │ ├── ExclusiveConditions.java │ │ │ │ ├── ExposeRepresentation.java │ │ │ │ ├── FieldAccess.java │ │ │ │ ├── FinalizerContract.java │ │ │ │ ├── FloatingPointComparison.java │ │ │ │ ├── FloatingPointNaN.java │ │ │ │ ├── IgnoredException.java │ │ │ │ ├── IncorrectVarArg.java │ │ │ │ ├── InfiniteLoop.java │ │ │ │ ├── InfiniteRecursion.java │ │ │ │ ├── InitializerRefersSubclass.java │ │ │ │ ├── Internationalization.java │ │ │ │ ├── InvalidMinMax.java │ │ │ │ ├── IteratorContract.java │ │ │ │ ├── JcipProblems.java │ │ │ │ ├── KnownComparison.java │ │ │ │ ├── LockProblems.java │ │ │ │ ├── MinValueHandling.java │ │ │ │ ├── MutableServletField.java │ │ │ │ ├── Naming.java │ │ │ │ ├── NegativeRemainder.java │ │ │ │ ├── NewGetClass.java │ │ │ │ ├── NoRuntimeRetention.java │ │ │ │ ├── NonShortCircuit.java │ │ │ │ ├── NullCheck.java │ │ │ │ ├── NumberConstructor.java │ │ │ │ ├── NumericComparison.java │ │ │ │ ├── NumericPromotion.java │ │ │ │ ├── RandomUsage.java │ │ │ │ ├── RedundantInterfaces.java │ │ │ │ ├── RedundantStreamCalls.java │ │ │ │ ├── RegexProblems.java │ │ │ │ ├── ReturnNull.java │ │ │ │ ├── RoughConstant.java │ │ │ │ ├── SameBranches.java │ │ │ │ ├── SameIfChain.java │ │ │ │ ├── SelfAssignment.java │ │ │ │ ├── SelfComputation.java │ │ │ │ ├── SerializationIdiom.java │ │ │ │ ├── SpinLoop.java │ │ │ │ ├── SqlBadArgument.java │ │ │ │ ├── StartInConstructor.java │ │ │ │ ├── StaticFieldFromInstanceMethod.java │ │ │ │ ├── StaticFieldNonThreadSafe.java │ │ │ │ ├── StringConcatInLoop.java │ │ │ │ ├── StringIndex.java │ │ │ │ ├── StringUsage.java │ │ │ │ ├── SwingProblems.java │ │ │ │ ├── SyncGetClass.java │ │ │ │ ├── SyncOnUpdatedField.java │ │ │ │ ├── ToArrayDowncast.java │ │ │ │ ├── UncalledPrivateMethod.java │ │ │ │ ├── UnnecessaryBoxing.java │ │ │ │ ├── UnnecessaryInstanceOf.java │ │ │ │ ├── UnreachableCatch.java │ │ │ │ ├── UnsafeGetResource.java │ │ │ │ ├── UnsupportedCall.java │ │ │ │ ├── UnusedParameter.java │ │ │ │ ├── UselessVoidMethod.java │ │ │ │ ├── VolatileArray.java │ │ │ │ ├── VolatileIncrement.java │ │ │ │ ├── WaitContract.java │ │ │ │ └── WrongMapIterator.java │ │ │ ├── filter/ │ │ │ │ └── AnnotationFilters.java │ │ │ ├── flow/ │ │ │ │ ├── Annotator.java │ │ │ │ ├── Annotators.java │ │ │ │ ├── BackLinkAnnotator.java │ │ │ │ ├── CFG.java │ │ │ │ ├── ClassFields.java │ │ │ │ ├── CodeBlock.java │ │ │ │ ├── ConstAnnotator.java │ │ │ │ ├── Dataflow.java │ │ │ │ ├── ETypeAnnotator.java │ │ │ │ ├── EnumConstant.java │ │ │ │ ├── Exceptional.java │ │ │ │ ├── FrameContext.java │ │ │ │ ├── GraphSearch.java │ │ │ │ ├── Inf.java │ │ │ │ ├── NullAnnotator.java │ │ │ │ ├── Nullness.java │ │ │ │ ├── PurityAnnotator.java │ │ │ │ ├── SourceAnnotator.java │ │ │ │ ├── TrueFalse.java │ │ │ │ ├── ValuesFlow.java │ │ │ │ └── etype/ │ │ │ │ ├── AndType.java │ │ │ │ ├── ComplexType.java │ │ │ │ ├── EType.java │ │ │ │ ├── OrType.java │ │ │ │ └── SingleType.java │ │ │ ├── input/ │ │ │ │ └── XmlReportReader.java │ │ │ ├── output/ │ │ │ │ ├── CombinedReportWriter.java │ │ │ │ ├── HtmlReportWriter.java │ │ │ │ ├── ReportWriter.java │ │ │ │ ├── Reports.java │ │ │ │ └── XmlReportWriter.java │ │ │ ├── registry/ │ │ │ │ ├── AbstractTypeDatabase.java │ │ │ │ ├── ClassContext.java │ │ │ │ ├── ClassData.java │ │ │ │ ├── DatabaseRegistry.java │ │ │ │ ├── Detector.java │ │ │ │ ├── DetectorRegistry.java │ │ │ │ ├── ElementContext.java │ │ │ │ ├── FieldContext.java │ │ │ │ ├── FieldData.java │ │ │ │ ├── MethodContext.java │ │ │ │ ├── MethodData.java │ │ │ │ └── anno/ │ │ │ │ ├── AssertNoWarning.java │ │ │ │ ├── AssertWarning.java │ │ │ │ ├── AstNodes.java │ │ │ │ ├── AstVisitor.java │ │ │ │ ├── ClassVisitor.java │ │ │ │ ├── FieldVisitor.java │ │ │ │ ├── MethodVisitor.java │ │ │ │ ├── TypeDatabase.java │ │ │ │ ├── TypeDatabaseItem.java │ │ │ │ ├── VisitOrder.java │ │ │ │ ├── WarningDefinition.java │ │ │ │ └── WarningDefinitions.java │ │ │ ├── repo/ │ │ │ │ ├── AuxRepository.java │ │ │ │ ├── CompositeRepository.java │ │ │ │ ├── DirRepository.java │ │ │ │ ├── FilteredRepository.java │ │ │ │ ├── JarRepository.java │ │ │ │ ├── Repository.java │ │ │ │ └── RepositoryVisitor.java │ │ │ ├── spi/ │ │ │ │ ├── DataTests.java │ │ │ │ └── HuntBugsPlugin.java │ │ │ ├── util/ │ │ │ │ ├── AccessLevel.java │ │ │ │ ├── Annotations.java │ │ │ │ ├── Equi.java │ │ │ │ ├── ExpressionFormatter.java │ │ │ │ ├── Exprs.java │ │ │ │ ├── Iterables.java │ │ │ │ ├── Maps.java │ │ │ │ ├── Methods.java │ │ │ │ ├── NodeChain.java │ │ │ │ ├── Nodes.java │ │ │ │ ├── Types.java │ │ │ │ ├── Variables.java │ │ │ │ ├── Xml.java │ │ │ │ └── YesNoMaybe.java │ │ │ └── warning/ │ │ │ ├── Formatter.java │ │ │ ├── Messages.java │ │ │ ├── Role.java │ │ │ ├── Roles.java │ │ │ ├── Warning.java │ │ │ ├── WarningAnnotation.java │ │ │ ├── WarningStatus.java │ │ │ ├── WarningType.java │ │ │ └── rule/ │ │ │ ├── CategoryRule.java │ │ │ ├── CompositeRule.java │ │ │ ├── RegexRule.java │ │ │ └── Rule.java │ │ └── resources/ │ │ └── huntbugs/ │ │ ├── messages.xml │ │ ├── messages.xsd │ │ ├── report.xsd │ │ └── report.xsl │ └── test/ │ └── java/ │ └── one/ │ └── util/ │ └── huntbugs/ │ ├── AsserterTest.java │ ├── DataTest.java │ ├── FilteredRepositoryTest.java │ ├── MessagesTest.java │ ├── OptionsTest.java │ ├── ReportsTest.java │ ├── RuleTest.java │ ├── asserter/ │ │ └── TestAsserter.java │ ├── registry/ │ │ └── DetectorRegistryTest.java │ ├── testdata/ │ │ ├── TestAbandonedStream.java │ │ ├── TestAppendObjectOutputStream.java │ │ ├── TestArrayRangeCheck.java │ │ ├── TestAtomicConcurrent.java │ │ ├── TestAverageComputation.java │ │ ├── TestBadMath.java │ │ ├── TestBadMethodCalls.java │ │ ├── TestBadMethodReferences.java │ │ ├── TestBadMonitorObject.java │ │ ├── TestCheckReturnValue.java │ │ ├── TestCloneContract.java │ │ ├── TestCompareContract.java │ │ ├── TestCompareUsage.java │ │ ├── TestConditionChain.java │ │ ├── TestCovariantArrays.java │ │ ├── TestDeadLocalStore.java │ │ ├── TestDroppedExceptionObject.java │ │ ├── TestDubiousCatch.java │ │ ├── TestDuplicateAssignment.java │ │ ├── TestEasyMockProblems.java │ │ ├── TestEmptySync.java │ │ ├── TestEqualsContract.java │ │ ├── TestExceptionalExpression.java │ │ ├── TestExclusiveConditions.java │ │ ├── TestExposeRepresentation.java │ │ ├── TestFieldAccess.java │ │ ├── TestFinalizer.java │ │ ├── TestFloatComparison.java │ │ ├── TestFloatNaN.java │ │ ├── TestIgnoredException.java │ │ ├── TestIncorrectVarArg.java │ │ ├── TestInfiniteLoop.java │ │ ├── TestInfiniteRecursion.java │ │ ├── TestInitializerRefersSubclass.java │ │ ├── TestInternationalization.java │ │ ├── TestInvalidMinMax.java │ │ ├── TestIteratorContract.java │ │ ├── TestJcipProblems.java │ │ ├── TestKnownComparison.java │ │ ├── TestLockProblems.java │ │ ├── TestMinValueHandling.java │ │ ├── TestMutableServletField.java │ │ ├── TestNaming.java │ │ ├── TestNegativeRemainder.java │ │ ├── TestNewGetClass.java │ │ ├── TestNoRuntimeRetention.java │ │ ├── TestNonShortCircuit.java │ │ ├── TestNullCheck.java │ │ ├── TestNumberConstructor.java │ │ ├── TestNumericComparison.java │ │ ├── TestNumericPromotion.java │ │ ├── TestRandomUsage.java │ │ ├── TestRedundantInterfaces.java │ │ ├── TestRedundantStreamCalls.java │ │ ├── TestRegexProblems.java │ │ ├── TestReturnNull.java │ │ ├── TestRoughConstants.java │ │ ├── TestSameBranches.java │ │ ├── TestSameIfChain.java │ │ ├── TestSelfAssignment.java │ │ ├── TestSelfComputation.java │ │ ├── TestSerializationIdiom.java │ │ ├── TestSpinLoop.java │ │ ├── TestSqlBadArgument.java │ │ ├── TestStartInConstructor.java │ │ ├── TestStaticFieldFromInstanceMethod.java │ │ ├── TestStaticFieldNonThreadSafe.java │ │ ├── TestStringConcatInLoop.java │ │ ├── TestStringIndex.java │ │ ├── TestStringUsage.java │ │ ├── TestSwingProblems.java │ │ ├── TestSyncGetClass.java │ │ ├── TestSyncOnUpdatedField.java │ │ ├── TestToArrayDowncast.java │ │ ├── TestUncalledPrivateMethod.java │ │ ├── TestUnnecessaryBoxing.java │ │ ├── TestUnnecessaryInstanceOf.java │ │ ├── TestUnreachableCatch.java │ │ ├── TestUnsafeGetResource.java │ │ ├── TestUnsupportedCall.java │ │ ├── TestUnusedParameter.java │ │ ├── TestUselessVoidMethod.java │ │ ├── TestValuesFlow.java │ │ ├── TestVolatileArray.java │ │ ├── TestVolatileIncrement.java │ │ ├── TestWaitContract.java │ │ ├── TestWrongMapIterator.java │ │ └── sub/ │ │ └── SubFieldAccess.java │ └── util/ │ └── TestIterables.java ├── huntbugs-ant-plugin/ │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings/ │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ └── src/ │ └── main/ │ ├── java/ │ │ └── one/ │ │ └── util/ │ │ └── huntbugs/ │ │ └── ant/ │ │ └── HuntBugsTask.java │ └── resources/ │ └── one/ │ └── util/ │ └── huntbugs/ │ └── ant/ │ └── antlib.xml ├── huntbugs-maven-plugin/ │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings/ │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.m2e.core.prefs │ │ └── org.eclipse.pde.core.prefs │ ├── pom.xml │ └── src/ │ └── main/ │ └── java/ │ └── one/ │ └── util/ │ └── huntbugs/ │ └── maven/ │ └── plugin/ │ └── HuntBugsMojo.java ├── pom.xml ├── sample-huntbugs-custom-detector/ │ ├── .gitignore │ ├── pom.xml │ └── src/ │ ├── main/ │ │ ├── java/ │ │ │ └── one/ │ │ │ └── util/ │ │ │ └── huntbugs/ │ │ │ └── sample/ │ │ │ ├── SampleHuntBugsPlugin.java │ │ │ └── detect/ │ │ │ └── SampleCustomDetector.java │ │ └── resources/ │ │ ├── META-INF/ │ │ │ └── services/ │ │ │ └── one.util.huntbugs.spi.HuntBugsPlugin │ │ └── huntbugs/ │ │ └── messages.xml │ └── test/ │ └── java/ │ └── one/ │ └── util/ │ └── huntbugs/ │ └── sample/ │ ├── DataTest.java │ └── testdata/ │ └── TestSampleCustomDetector.java └── sample-project/ ├── .gitignore ├── pom.xml └── src/ ├── main/ │ └── java/ │ └── one/ │ └── util/ │ └── huntbugs/ │ └── sample/ │ └── MyProductionCode.java └── test/ └── java/ └── one/ └── util/ └── huntbugs/ └── sample/ └── MyProductionCodeTest.java ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitattributes ================================================ * text=auto *.java text *.md text *.xml text *.xsd text *.xsl text *.bat text eol=crlf *.sh text eol=lf ================================================ FILE: .gitignore ================================================ /huntbugstest /target # Eclipse workspace .metadata # Merge files *.orig # IntelliJ IDEA .idea *.releaseBackup ================================================ FILE: .mailmap ================================================ Tagir Valeev ================================================ FILE: .travis.yml ================================================ language: java install: - mvn install -DskipTests=true -B -V jdk: - oraclejdk8 after_success: - cd huntbugs && mvn jacoco:report coveralls:report ================================================ FILE: LICENSE ================================================ Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: You must give any other recipients of the Work or Derivative Works a copy of this License; and You must cause any modified files to carry prominent notices stating that You changed the files; and You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS ================================================ FILE: README.md ================================================ This project is abandoned and unlikely will be supported in future === HuntBugs 0.0.11 === [![Join the chat at https://gitter.im/amaembo/huntbugs](https://badges.gitter.im/amaembo/huntbugs.svg)](https://gitter.im/amaembo/huntbugs?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![Maven Central](https://img.shields.io/maven-central/v/one.util/huntbugs.svg)](https://maven-badges.herokuapp.com/maven-central/one.util/huntbugs/) [![Build Status](https://travis-ci.org/amaembo/huntbugs.png?branch=master)](https://travis-ci.org/amaembo/huntbugs) [![Coverage Status](https://coveralls.io/repos/github/amaembo/huntbugs/badge.svg?branch=master)](https://coveralls.io/github/amaembo/huntbugs?branch=master) New Java bytecode static analyzer tool based on [Procyon Compiler Tools](https://bitbucket.org/mstrobel/procyon/overview) aimed to supersede the [FindBugs](http://findbugs.sourceforge.net/). Currently in early development stage, though already could be tried. Currently 222 FindBugs warnings reimplemented and several new warnings added. ### Use with Maven Compile project and run `mvn one.util:huntbugs-maven-plugin:huntbugs` The output report is located in `target/huntbugs/report.html` ### Use with Ant * Build `huntbugs-ant-plugin` via `mvn package` (or alternatively download from [here](https://oss.sonatype.org/content/repositories/releases/one/util/huntbugs-ant-plugin/)) * Take the resulting `huntbugs-ant-plugin--nodeps.jar` * Define the task: ~~~~xml ~~~~ * Run it: ~~~~xml ~~~~ ### Use with Gradle Check the [Gradle plugin page](https://github.com/lavcraft/huntbugs-gradle-plugin) ### Use with Eclipse Check the [Eclipse plugin page](https://github.com/aaasko/huntbugs-eclipse) (in early development stage) ### Exec as command-line tool Command-line tool is mostly aimed to aid developers. Nevertheless you may use it if you like. To launch use `mvn exec:java -Dexec.args="...args..."` inside huntbugs subdirectory. Examples: * `mvn exec:java -Dexec.args="-lw"` will list all the warnings. * `mvn exec:java -Dexec.args="myfolder/*.jar"` will analyze all jars inside `myfolder` writing the report into `huntbugs.warnings.xml` and `huntbugs.warnings.html` in current directory. * `mvn exec:java` will show all the supported command line options. ================================================ FILE: findbugs.txt ================================================ ==== Reimplemented abbrev="CNT" type="CNT_ROUGH_CONSTANT_VALUE" category="BAD_PRACTICE" --> RoughConstantValue abbrev="NS" type="NS_NON_SHORT_CIRCUIT" category="STYLE" --> NonShortCircuit abbrev="NS" type="NS_DANGEROUS_NON_SHORT_CIRCUIT" category="STYLE" --> NonShortCircuitDangerous abbrev="Dm" type="DM_NEW_FOR_GETCLASS" category="PERFORMANCE" --> NewForGetClass abbrev="VO" type="VO_VOLATILE_INCREMENT" category="MT_CORRECTNESS" --> VolatileIncrement, VolatileMath abbrev="FI" type="FI_NULLIFY_SUPER" category="BAD_PRACTICE" --> FinalizeNullifiesSuper abbrev="FI" type="FI_USELESS" category="BAD_PRACTICE" --> FinalizeUselessSuper abbrev="FI" type="FI_EMPTY" category="BAD_PRACTICE" --> FinalizeEmpty abbrev="FI" type="FI_PUBLIC_SHOULD_BE_PROTECTED" category="MALICIOUS_CODE" cweid="583" --> FinalizePublic abbrev="FI" type="FI_EXPLICIT_INVOCATION" category="BAD_PRACTICE" cweid="586" --> FinalizeInvocation abbrev="FE" type="FE_TEST_IF_EQUAL_TO_NOT_A_NUMBER" category="CORRECTNESS" --> FloatCompareToNaN abbrev="FE" type="FE_FLOATING_POINT_EQUALITY" category="STYLE" --> FloatComparison abbrev="Bx" type="DM_NUMBER_CTOR" category="PERFORMANCE" --> NumberConstructor abbrev="Dm" type="DM_BOOLEAN_CTOR" category="PERFORMANCE" --> BooleanConstructor abbrev="Dm" type="DM_INVALID_MIN_MAX" category="CORRECTNESS" --> InvalidMinMax abbrev="SIO" type="SIO_SUPERFLUOUS_INSTANCEOF" category="CORRECTNESS" --> UnnecessaryInstanceOf abbrev="RV" type="RV_ABSOLUTE_VALUE_OF_RANDOM_INT" category="CORRECTNESS" --> AbsoluteValueOfRandomInt abbrev="RV" type="RV_ABSOLUTE_VALUE_OF_HASHCODE" category="CORRECTNESS" --> AbsoluteValueOfHashCode abbrev="RV" type="RV_01_TO_INT" category="CORRECTNESS" --> RandomDoubleToInt abbrev="Dm" type="DM_NEXTINT_VIA_NEXTDOUBLE" category="PERFORMANCE" --> RandomNextIntViaNextDouble abbrev="Dm" type="DM_STRING_CTOR" category="PERFORMANCE" --> StringConstructor abbrev="Dm" type="DM_STRING_VOID_CTOR" category="PERFORMANCE" --> StringConstructorEmpty abbrev="Dm" type="DM_STRING_TOSTRING" category="PERFORMANCE" --> StringToString abbrev="Dm" type="DM_EXIT" category="BAD_PRACTICE" cweid="382" --> SystemExit abbrev="Eq" type="EQ_ALWAYS_TRUE" category="CORRECTNESS" --> EqualsReturnsTrue abbrev="Eq" type="EQ_ALWAYS_FALSE" category="CORRECTNESS" --> EqualsReturnsFalse abbrev="SA" type="SA_FIELD_SELF_ASSIGNMENT" category="CORRECTNESS" --> SelfAssignmentField abbrev="Dm" type="DM_GC" category="PERFORMANCE" --> System.gc() abbrev="INT" type="INT_BAD_REM_BY_1" category="STYLE" --> RemOne abbrev="INT" type="INT_VACUOUS_BIT_OPERATION" category="STYLE" --> UselessOrWithZero, UselessAndWithMinusOne abbrev="SA" type="SA_FIELD_SELF_COMPUTATION" category="CORRECTNESS" --> SelfComputation abbrev="SA" type="SA_LOCAL_SELF_COMPUTATION" category="CORRECTNESS" --> SelfComputation abbrev="SA" type="SA_FIELD_SELF_COMPARISON" category="CORRECTNESS" --> SelfComparison abbrev="SA" type="SA_LOCAL_SELF_COMPARISON" category="CORRECTNESS" --> SelfComparison abbrev="BIT" type="BIT_AND" category="CORRECTNESS" --> CompareBitAndIncompatible abbrev="BIT" type="BIT_IOR" category="CORRECTNESS" --> CompareBitOrIncompatible abbrev="FI" type="FI_FINALIZER_ONLY_NULLS_FIELDS" category="BAD_PRACTICE" --> FinalizeOnlyNullsFields abbrev="FI" type="FI_FINALIZER_NULLS_FIELDS" category="BAD_PRACTICE" --> FinalizeNullsFields abbrev="Dm" type="DM_USELESS_THREAD" category="MT_CORRECTNESS" --> UselessThread abbrev="UW" type="UW_UNCOND_WAIT" category="MT_CORRECTNESS" --> WaitUnconditional abbrev="Wa" type="WA_NOT_IN_LOOP" category="MT_CORRECTNESS" --> WaitNotInLoop abbrev="DB" type="DB_DUPLICATE_BRANCHES" category="STYLE" --> SameBranchesIf, SameBranchesTernary abbrev="UCF" type="UCF_USELESS_CONTROL_FLOW" category="STYLE" --> EmptyBranch abbrev="UCF" type="UCF_USELESS_CONTROL_FLOW_NEXT_LINE" category="STYLE" --> EmptyBranch abbrev="Dm" type="DM_RUN_FINALIZERS_ON_EXIT" category="BAD_PRACTICE" --> SystemRunFinalizersOnExit abbrev="NN" type="NN_NAKED_NOTIFY" category="MT_CORRECTNESS" --> NotifyNaked abbrev="DMI" type="DMI_RANDOM_USED_ONLY_ONCE" category="BAD_PRACTICE" --> RandomUsedOnlyOnce abbrev="DB" type="DB_DUPLICATE_SWITCH_CLAUSES" category="STYLE" --> SameBranchesSwitch, SameBranchesSwitchDefault abbrev="DMI" type="DMI_BIGDECIMAL_CONSTRUCTED_FROM_DOUBLE" category="CORRECTNESS" --> BigDecimalConstructedFromDouble abbrev="RpC" type="RpC_REPEATED_CONDITIONAL_TEST" category="CORRECTNESS" --> SameConditions abbrev="Dm" type="DMI_BLOCKING_METHODS_ON_URL" category="PERFORMANCE" --> URLBlockingMethod abbrev="SC" type="SC_START_IN_CTOR" category="MT_CORRECTNESS" --> StartInConstructor abbrev="NP" type="NP_BOOLEAN_RETURN_NULL" category="BAD_PRACTICE" --> BooleanReturnNull abbrev="NP" type="NP_OPTIONAL_RETURN_NULL" category="CORRECTNESS" --> OptionalReturnNull abbrev="PZLA" type="PZLA_PREFER_ZERO_LENGTH_ARRAYS" category="STYLE" --> ArrayReturnNull abbrev="Nm" type="NM_METHOD_NAMING_CONVENTION" category="BAD_PRACTICE" --> BadNameOfMethod abbrev="AT" type="AT_OPERATION_SEQUENCE_ON_CONCURRENT_ABSTRACTION" category="MT_CORRECTNESS" --> NonAtomicOperationOnConcurrentMap abbrev="ICAST" type="ICAST_INTEGER_MULTIPLY_CAST_TO_LONG" category="STYLE" --> IntegerMultiplicationPromotedToLong abbrev="ICAST" type="ICAST_IDIV_CAST_TO_DOUBLE" category="STYLE" --> IntegerDivisionPromotedToFloat abbrev="ICAST" type="ICAST_INT_CAST_TO_DOUBLE_PASSED_TO_CEIL" category="CORRECTNESS" --> IntegerPromotionInCeilOrRound abbrev="ICAST" type="ICAST_INT_CAST_TO_FLOAT_PASSED_TO_ROUND" category="CORRECTNESS" --> IntegerPromotionInCeilOrRound abbrev="EI2" type="EI_EXPOSE_REP2" category="MALICIOUS_CODE" cweid="374" --> ExposeMutableFieldViaParameter abbrev="MS" type="EI_EXPOSE_STATIC_REP2" category="MALICIOUS_CODE" --> ExposeMutableStaticFieldViaParameter abbrev="USELESS_STRING" type="DMI_INVOKING_TOSTRING_ON_ARRAY" category="CORRECTNESS" --> ArrayToString abbrev="USELESS_STRING" type="DMI_INVOKING_TOSTRING_ON_ANONYMOUS_ARRAY" category="CORRECTNESS" --> ArrayToString abbrev="DMI" type="DMI_INVOKING_HASHCODE_ON_ARRAY" category="CORRECTNESS" --> ArrayHashCode abbrev="SA" type="SA_LOCAL_SELF_ASSIGNMENT" category="STYLE" --> SelfAssignmentLocal abbrev="SA" type="SA_LOCAL_SELF_ASSIGNMENT_INSTEAD_OF_FIELD" category="CORRECTNESS" --> SelfAssignmentLocalInsteadOfField abbrev="DMI" type="DMI_LONG_BITS_TO_DOUBLE_INVOKED_ON_INT" category="CORRECTNESS" abbrev="BC" type="BC_IMPOSSIBLE_DOWNCAST_OF_TOARRAY" category="CORRECTNESS" cweid="570" --> ImpossibleToArrayDowncast abbrev="WMI" type="WMI_WRONG_MAP_ITERATOR" category="PERFORMANCE" --> WrongMapIterator, WrongMapIteratorValues abbrev="UI" type="UI_INHERITANCE_UNSAFE_GETRESOURCE" category="BAD_PRACTICE" --> UnsafeGetResource abbrev="RV" type="RV_REM_OF_RANDOM_INT" category="STYLE" --> RandomIntRemainder abbrev="RV" type="RV_REM_OF_HASHCODE" category="STYLE" --> HashCodeRemainder abbrev="ST" type="ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD" category="STYLE" --> StaticFieldFromInstanceMethod abbrev="IMSE" type="IMSE_DONT_CATCH_IMSE" category="BAD_PRACTICE" --> CatchIllegalMonitorStateException abbrev="BIT" type="BIT_SIGNED_CHECK" category="BAD_PRACTICE" --> BitCheckGreater abbrev="BIT" type="BIT_SIGNED_CHECK_HIGH_BIT" category="CORRECTNESS" --> BitCheckGreaterNegative abbrev="Bx" type="DM_BOXED_PRIMITIVE_TOSTRING" category="PERFORMANCE" --> BoxedForToString abbrev="Bx" type="BX_BOXING_IMMEDIATELY_UNBOXED" category="PERFORMANCE" --> BoxedForUnboxing abbrev="Bx" type="BX_BOXING_IMMEDIATELY_UNBOXED_TO_PERFORM_COERCION" category="PERFORMANCE" --> BoxedForUnboxing abbrev="Bx" type="BX_UNBOXING_IMMEDIATELY_REBOXED" category="PERFORMANCE" --> UnboxedForBoxing abbrev="Nm" type="NM_LCASE_HASHCODE" category="CORRECTNESS" --> BadNameOfMethodMistake abbrev="Nm" type="NM_LCASE_TOSTRING" category="CORRECTNESS" --> BadNameOfMethodMistake abbrev="Nm" type="NM_BAD_EQUAL" category="CORRECTNESS" --> BadNameOfMethodMistake abbrev="RV" type="RV_NEGATING_RESULT_OF_COMPARETO" category="BAD_PRACTICE" --> NegatingComparatorResult abbrev="RV" type="RV_CHECK_COMPARETO_FOR_SPECIFIC_RETURN_VALUE" category="CORRECTNESS" --> ComparingComparatorResultWithNumber abbrev="FI" type="FI_MISSING_SUPER_CALL" category="BAD_PRACTICE" --> FinalizeNoSuperCall abbrev="RV" type="RV_EXCEPTION_NOT_THROWN" category="CORRECTNESS" --> DroppedException abbrev="Dm" type="DMI_FUTILE_ATTEMPT_TO_CHANGE_MAXPOOL_SIZE_OF_SCHEDULED_THREAD_POOL_EXECUTOR" category="CORRECTNESS" --> ScheduledThreadPoolExecutorChangePoolSize abbrev="IO" type="IO_APPENDING_TO_OBJECT_OUTPUT_STREAM" category="CORRECTNESS" --> AppendObjectOutputStream abbrev="DMI" type="DMI_BAD_MONTH" category="CORRECTNESS" --> DateBadMonth abbrev="DMI" type="DMI_USELESS_SUBSTRING" category="STYLE" --> UselessStringSubstring abbrev="RANGE" type="RANGE_STRING_INDEX" category="CORRECTNESS" --> StringIndexIsLessThanZero, StringIndexIsGreaterThanAllowed abbrev="Se" type="SE_COMPARATOR_SHOULD_BE_SERIALIZABLE" category="BAD_PRACTICE" --> ComparatorIsNotSerializable abbrev="Nm" type="NM_CLASS_NAMING_CONVENTION" category="BAD_PRACTICE" --> BadNameOfClass abbrev="Nm" type="NM_CLASS_NOT_EXCEPTION" category="BAD_PRACTICE" --> BadNameOfClassException abbrev="RI" type="RI_REDUNDANT_INTERFACES" category="STYLE" --> RedundantInterface abbrev="DMI" type="DMI_CALLING_NEXT_FROM_HASNEXT" category="CORRECTNESS" --> IteratorHasNextCallsNext abbrev="BSHIFT" type="ICAST_BAD_SHIFT_AMOUNT" category="CORRECTNESS" --> BitShiftInvalidAmount abbrev="INT" type="INT_BAD_COMPARISON_WITH_INT_VALUE" category="CORRECTNESS" --> ComparisonWithOutOfRangeValue abbrev="UC" type="UC_USELESS_CONDITION_TYPE" category="STYLE" --> ComparisonWithOutOfRangeValue abbrev="Eq" type="EQ_COMPARING_CLASS_NAMES" category="CORRECTNESS" --> EqualsClassNames abbrev="Eq" type="EQ_DONT_DEFINE_EQUALS_FOR_ENUM" category="CORRECTNESS" --> EqualsEnum abbrev="Eq" type="EQ_SELF_USE_OBJECT" category="CORRECTNESS" --> EqualsSelf abbrev="Eq" type="EQ_SELF_NO_OBJECT" category="BAD_PRACTICE" --> EqualsSelf abbrev="Eq" type="EQ_OTHER_USE_OBJECT" category="CORRECTNESS" --> EqualsOther abbrev="Eq" type="EQ_OTHER_NO_OBJECT" category="CORRECTNESS" --> EqualsOther abbrev="RE" type="RE_POSSIBLE_UNINTENDED_PATTERN" category="CORRECTNESS" --> RegexUnintended abbrev="RE" type="RE_BAD_SYNTAX_FOR_REGULAR_EXPRESSION" category="CORRECTNESS" --> RegexBadSyntax abbrev="RE" type="RE_CANT_USE_FILE_SEPARATOR_AS_REGULAR_EXPRESSION" category="CORRECTNESS" --> RegexFileSeparator abbrev="Nm" type="NM_SAME_SIMPLE_NAME_AS_INTERFACE" category="BAD_PRACTICE" --> BadNameOfClassSameAsInterface abbrev="Nm" type="NM_SAME_SIMPLE_NAME_AS_SUPERCLASS" category="BAD_PRACTICE" --> BadNameOfClassSameAsSuperclass abbrev="INT" type="INT_BAD_COMPARISON_WITH_NONNEGATIVE_VALUE" category="CORRECTNESS" --> ComparisonWithOutOfRangeValue abbrev="INT" type="INT_VACUOUS_COMPARISON" category="STYLE" --> ComparisonWithOutOfRangeValue abbrev="IP" type="IP_PARAMETER_IS_DEAD_BUT_OVERWRITTEN" category="CORRECTNESS" cweid="563" --> ParameterOverwritten abbrev="INT" type="INT_BAD_COMPARISON_WITH_SIGNED_BYTE" category="CORRECTNESS" --> ComparisonWithOutOfRangeValue, SwitchBranchUnreachable abbrev="BIT" type="BIT_ADD_OF_SIGNED_BYTE" category="CORRECTNESS" --> BitAddSignedByte abbrev="BIT" type="BIT_IOR_OF_SIGNED_BYTE" category="CORRECTNESS" --> BitOrSignedByte abbrev="BIT" type="BIT_AND_ZZ" category="CORRECTNESS" --> UselessAndWithZero * abbrev="JLM" type="JML_JSR166_CALLING_WAIT_RATHER_THAN_AWAIT" category="MT_CORRECTNESS" --> IncorrectConcurrentMethod abbrev="DL" type="DL_SYNCHRONIZATION_ON_BOOLEAN" category="MT_CORRECTNESS" --> SynchronizationOnBoolean abbrev="DL" type="DL_SYNCHRONIZATION_ON_BOXED_PRIMITIVE" category="MT_CORRECTNESS" --> SynchronizationOnBoxedNumber abbrev="DL" type="DL_SYNCHRONIZATION_ON_UNSHARED_BOXED_PRIMITIVE" category="MT_CORRECTNESS" --> SynchronizationOnUnsharedBoxed abbrev="ESync" type="ESync_EMPTY_SYNC" category="MT_CORRECTNESS" cweid="585" --> EmptySynchronizeBlock abbrev="SBSC" type="SBSC_USE_STRINGBUFFER_CONCATENATION" category="PERFORMANCE" --> StringConcatInLoop abbrev="SP" type="SP_SPIN_ON_FIELD" category="MT_CORRECTNESS" --> SpinLoopOnField abbrev="SW" type="SW_SWING_METHODS_INVOKED_IN_SWING_THREAD" category="BAD_PRACTICE" --> SwingMethodNotInSwingThread abbrev="Dm" type="DM_CONVERT_CASE" category="I18N" --> ConvertCaseWithDefaultLocale abbrev="Dm" type="DM_DEFAULT_ENCODING" category="I18N" --> MethodReliesOnDefaultEncoding abbrev="IL" type="IL_INFINITE_RECURSIVE_LOOP" category="CORRECTNESS" cweid="674" --> InfiniteRecursion abbrev="IL" type="IL_CONTAINER_ADDED_TO_ITSELF" category="CORRECTNESS" --> CollectionAddedToItself abbrev="IL" type="IL_INFINITE_LOOP" category="CORRECTNESS" --> InfiniteLoop, InvariantLoopCondition abbrev="VA" type="VA_PRIMITIVE_ARRAY_PASSED_TO_OBJECT_VARARG" category="CORRECTNESS" --> PrimitiveArrayPassedAsVarArg abbrev="IM" type="IM_BAD_CHECK_FOR_ODD" category="STYLE" --> CheckForOddnessFailsForNegative abbrev="IM" type="IM_AVERAGE_COMPUTATION_COULD_OVERFLOW" category="STYLE" --> AverageComputationCouldOverflow abbrev="Dm" type="DMI_ANNOTATION_IS_NOT_VISIBLE_TO_REFLECTION" category="CORRECTNESS" --> AnnotationNoRuntimeRetention abbrev="It" type="IT_NO_SUCH_ELEMENT" category="BAD_PRACTICE" --> IteratorNoThrow abbrev="DLS" type="DLS_DEAD_LOCAL_STORE_IN_RETURN" category="STYLE" --> DeadStoreInReturn abbrev="DLS" type="DLS_DEAD_LOCAL_INCREMENT_IN_RETURN" category="CORRECTNESS" --> DeadIncrementInReturn abbrev="CN" type="CN_IMPLEMENTS_CLONE_BUT_NOT_CLONEABLE" category="BAD_PRACTICE" --> NotCloneableHasClone abbrev="CN" type="CN_IDIOM" category="BAD_PRACTICE" --> CloneableDoesNotImplementClone abbrev="CN" type="CN_IDIOM_NO_SUPER_CALL" category="BAD_PRACTICE" --> CloneableNoSuperCall abbrev="WL" type="WL_USING_GETCLASS_RATHER_THAN_CLASS_LITERAL" category="MT_CORRECTNESS" --> SyncOnGetClass abbrev="Dm" type="DMI_VACUOUS_CALL_TO_EASYMOCK_METHOD" category="CORRECTNESS" --> UselessEasyMockCall abbrev="RR" type="RR_NOT_CHECKED" category="BAD_PRACTICE" --> ReturnValueOfRead abbrev="RR" type="SR_NOT_CHECKED" category="BAD_PRACTICE" --> ReturnValueOfSkip abbrev="DLS" type="DLS_OVERWRITTEN_INCREMENT" category="CORRECTNESS" --> DeadIncrementInAssignment abbrev="DMI" type="DMI_DOH" category="CORRECTNESS" --> NullCheckMethodForConstant abbrev="DMI" type="DMI_ARGUMENTS_WRONG_ORDER" category="CORRECTNESS" --> WrongArgumentOrder abbrev="Nm" type="NM_FIELD_NAMING_CONVENTION" category="BAD_PRACTICE" --> BadNameOfField abbrev="Nm" type="NM_METHOD_CONSTRUCTOR_CONFUSION" category="CORRECTNESS" --> BadNameOfMethodSameAsConstructor abbrev="UPM" type="UPM_UNCALLED_PRIVATE_METHOD" category="PERFORMANCE" --> UncalledPrivateMethod, UncalledPrivateMethodChain abbrev="RANGE" type="RANGE_ARRAY_INDEX" category="CORRECTNESS" --> ArrayIndexOutOfRange, ArrayIndexNegative abbrev="RANGE" type="RANGE_ARRAY_OFFSET" category="CORRECTNESS" --> ArrayOffsetOutOfRange, ArrayIndexNegative abbrev="RANGE" type="RANGE_ARRAY_LENGTH" category="CORRECTNESS" --> ArrayLengthOutOfRange, ArrayIndexNegative abbrev="HE" type="HE_HASHCODE_USE_OBJECT_EQUALS" category="BAD_PRACTICE" --> HashCodeObjectEquals abbrev="HE" type="HE_HASHCODE_NO_EQUALS" category="BAD_PRACTICE" --> HashCodeNoEquals abbrev="HE" type="HE_EQUALS_USE_HASHCODE" category="BAD_PRACTICE" --> EqualsObjectHashCode abbrev="HE" type="HE_EQUALS_NO_HASHCODE" category="BAD_PRACTICE" --> EqualsNoHashCode abbrev="CAA" type="CAA_COVARIANT_ARRAY_ELEMENT_STORE" category="CORRECTNESS" experimental="true" --> ContravariantArrayStore abbrev="DE" type="DE_MIGHT_IGNORE" category="BAD_PRACTICE" --> IgnoredException abbrev="SA" type="SA_FIELD_DOUBLE_ASSIGNMENT" category="STYLE" --> FieldDoubleAssignment abbrev="UuF" type="UUF_UNUSED_FIELD" category="PERFORMANCE" --> UnusedPrivateField abbrev="UuF" type="UUF_UNUSED_PUBLIC_OR_PROTECTED_FIELD" category="STYLE" --> UnusedPublicField abbrev="UrF" type="URF_UNREAD_FIELD" category="PERFORMANCE" --> UnreadPrivateField abbrev="UrF" type="URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD" category="STYLE" --> UnreadPublicField abbrev="SS" type="SS_SHOULD_BE_STATIC" category="PERFORMANCE" --> FieldShouldBeStatic abbrev="NP" type="NP_UNWRITTEN_FIELD" category="CORRECTNESS" --> UnwrittenPrivateField abbrev="NP" type="NP_UNWRITTEN_PUBLIC_OR_PROTECTED_FIELD" category="STYLE" --> UnwrittenPublicField abbrev="UwF" type="UWF_UNWRITTEN_FIELD" category="CORRECTNESS" --> UnwrittenPrivateField abbrev="UwF" type="UWF_UNWRITTEN_PUBLIC_OR_PROTECTED_FIELD" category="STYLE" --> UnwrittenPublicField abbrev="UwF" type="UWF_NULL_FIELD" category="CORRECTNESS" --> FieldIsAlwaysNull abbrev="Se" type="SE_NONFINAL_SERIALVERSIONID" category="BAD_PRACTICE" --> SerialVersionUidNotFinal abbrev="Se" type="SE_NONSTATIC_SERIALVERSIONID" category="BAD_PRACTICE" --> SerialVersionUidNotStatic abbrev="Se" type="SE_NONLONG_SERIALVERSIONID" category="BAD_PRACTICE" --> SerialVersionUidNotLong abbrev="VO" type="VO_VOLATILE_REFERENCE_TO_ARRAY" category="MT_CORRECTNESS" --> VolatileArray abbrev="MS" type="MS_OOI_PKGPROTECT" category="MALICIOUS_CODE" --> StaticFieldShouldBeNonInterfacePackagePrivate abbrev="MS" type="MS_FINAL_PKGPROTECT" category="MALICIOUS_CODE" --> StaticFieldShouldBeFinalAndPackagePrivate abbrev="MS" type="MS_SHOULD_BE_FINAL" category="MALICIOUS_CODE" --> StaticFieldShouldBeFinal abbrev="MS" type="MS_SHOULD_BE_REFACTORED_TO_BE_FINAL" category="MALICIOUS_CODE" --> StaticFieldShouldBeRefactoredToFinal abbrev="MS" type="MS_PKGPROTECT" category="MALICIOUS_CODE" --> StaticFieldShouldBePackagePrivate abbrev="MS" type="MS_MUTABLE_ARRAY" category="MALICIOUS_CODE" --> StaticFieldMutableArray abbrev="MS" type="MS_CANNOT_BE_FINAL" category="MALICIOUS_CODE" --> StaticFieldCannotBeFinal abbrev="MS" type="MS_MUTABLE_HASHTABLE" category="MALICIOUS_CODE" --> StaticFieldMutableCollection abbrev="MS" type="MS_MUTABLE_COLLECTION" category="MALICIOUS_CODE" --> StaticFieldMutableCollection abbrev="MS" type="MS_MUTABLE_COLLECTION_PKGPROTECT" category="MALICIOUS_CODE" --> StaticFieldShouldBePackagePrivate abbrev="MS" type="MS_EXPOSE_REP" category="MALICIOUS_CODE" --> ExposeMutableStaticFieldViaReturnValue abbrev="EI" type="EI_EXPOSE_REP" category="MALICIOUS_CODE" cweid="374" --> ExposeMutableFieldViaReturnValue abbrev="Co" type="CO_COMPARETO_RESULTS_MIN_VALUE" category="BAD_PRACTICE" --> CompareReturnsMinValue abbrev="UMAC" type="UMAC_UNCALLABLE_METHOD_OF_ANONYMOUS_CLASS" category="CORRECTNESS" --> UncalledMethodOfAnonymousClass abbrev="DLS" type="DLS_DEAD_LOCAL_STORE" category="STYLE" --> DeadLocalStore, DeadParameterStore, UnusedLocalVariable abbrev="DLS" type="DLS_DEAD_LOCAL_STORE_OF_NULL" category="STYLE" --> DeadLocalStore, DeadParameterStore, UnusedLocalVariable abbrev="BSHIFT" type="BSHIFT_WRONG_ADD_PRIORITY" category="CORRECTNESS" --> BitShiftWrongPriority abbrev="JCIP" type="JCIP_FIELD_ISNT_FINAL_IN_IMMUTABLE_CLASS" category="BAD_PRACTICE" --> NonFinalFieldInImmutableClass abbrev="Se" type="SE_METHOD_MUST_BE_PRIVATE" category="CORRECTNESS" --> SerializationMethodMustBePrivate abbrev="UC" type="UC_USELESS_VOID_METHOD" category="STYLE" --> UselessVoidMethod abbrev="ME" type="ME_MUTABLE_ENUM_FIELD" category="BAD_PRACTICE" --> MutableEnumField abbrev="SQL" type="SQL_BAD_RESULTSET_ACCESS" category="CORRECTNESS" --> BadResultSetArgument abbrev="SQL" type="SQL_BAD_PREPARED_STATEMENT_ACCESS" category="CORRECTNESS" --> BadPreparedStatementArgument abbrev="Dm" type="DMI_UNSUPPORTED_METHOD" category="STYLE" --> UnsupportedCall abbrev="STCAL" type="STCAL_STATIC_CALENDAR_INSTANCE" category="MT_CORRECTNESS" --> StaticNotThreadSafeField abbrev="STCAL" type="STCAL_STATIC_SIMPLE_DATE_FORMAT_INSTANCE" category="MT_CORRECTNESS" --> StaticNotThreadSafeField abbrev="STCAL" type="STCAL_INVOKE_ON_STATIC_CALENDAR_INSTANCE" category="MT_CORRECTNESS" --> StaticNotThreadSafeFieldInvoke abbrev="STCAL" type="STCAL_INVOKE_ON_STATIC_DATE_FORMAT_INSTANCE" category="MT_CORRECTNESS" --> StaticNotThreadSafeFieldInvoke abbrev="Nm" type="NM_FUTURE_KEYWORD_USED_AS_MEMBER_IDENTIFIER" category="BAD_PRACTICE" --> BadNameOfMethodFutureKeyword, BadNameOfFieldFutureKeyword abbrev="ML" type="ML_SYNC_ON_UPDATED_FIELD" category="MT_CORRECTNESS" --> SynchronizationOnUpdatedField abbrev="MSF" type="MSF_MUTABLE_SERVLET_FIELD" category="MT_CORRECTNESS" --> MutableServletField abbrev="Se" type="SE_READ_RESOLVE_IS_STATIC" category="CORRECTNESS" --> ReadResolveIsStatic abbrev="Se" type="SE_READ_RESOLVE_MUST_RETURN_OBJECT" category="BAD_PRACTICE" --> ReadResolveMustReturnObject abbrev="BC" type="BC_IMPOSSIBLE_DOWNCAST" category="CORRECTNESS" cweid="570" --> ImpossibleCast abbrev="BC" type="BC_IMPOSSIBLE_CAST" category="CORRECTNESS" cweid="570" --> ImpossibleCast abbrev="BC" type="BC_IMPOSSIBLE_INSTANCEOF" category="CORRECTNESS" cweid="570" --> ImpossibleInstanceOf abbrev="BC" type="BC_VACUOUS_INSTANCEOF" category="STYLE" cweid="571" --> UnnecessaryInstanceOf abbrev="RCN" type="RCN_REDUNDANT_NULLCHECK_OF_NULL_VALUE" category="STYLE" --> RedundantNullCheckNull abbrev="RCN" type="RCN_REDUNDANT_NULLCHECK_WOULD_HAVE_BEEN_A_NPE" category="CORRECTNESS" --> RedundantNullCheckDeref abbrev="RCN" type="RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE" category="STYLE" --> RedundantNullCheck, RedundantNullCheckChecked abbrev="RCN" type="RCN_REDUNDANT_COMPARISON_TWO_NULL_VALUES" category="STYLE" --> RedundantComparisonNull abbrev="RCN" type="RCN_REDUNDANT_COMPARISON_OF_NULL_AND_NONNULL_VALUE" category="STYLE" --> RedundantComparisonNullNonNull abbrev="NP" type="NP_ALWAYS_NULL" category="CORRECTNESS" --> NullDereferenceGuaranteed abbrev="WS" type="WS_WRITEOBJECT_SYNC" category="MT_CORRECTNESS" --> WriteObjectIsSynchronized abbrev="RS" type="RS_READOBJECT_SYNC" category="MT_CORRECTNESS" --> ReadObjectIsSynchronized ==== Not reimplemented abbrev="NP" type="NP_GUARANTEED_DEREF" category="CORRECTNESS" abbrev="Ru" type="RU_INVOKE_RUN" category="MT_CORRECTNESS" cweid="572" abbrev="DL" type="DL_SYNCHRONIZATION_ON_SHARED_CONSTANT" category="MT_CORRECTNESS" abbrev="XSS" type="XSS_REQUEST_PARAMETER_TO_SEND_ERROR" category="SECURITY" cweid="81" abbrev="XSS" type="XSS_REQUEST_PARAMETER_TO_SERVLET_WRITER" category="SECURITY" abbrev="XSS" type="XSS_REQUEST_PARAMETER_TO_JSP_WRITER" category="SECURITY" abbrev="HRS" type="HRS_REQUEST_PARAMETER_TO_HTTP_HEADER" category="SECURITY" cweid="113" abbrev="HRS" type="HRS_REQUEST_PARAMETER_TO_COOKIE" category="SECURITY" cweid="113" abbrev="PT" type="PT_ABSOLUTE_PATH_TRAVERSAL" category="SECURITY" cweid="36" abbrev="PT" type="PT_RELATIVE_PATH_TRAVERSAL" category="SECURITY" cweid="23" abbrev="NP" type="NP_SYNC_AND_NULL_CHECK_FIELD" category="MT_CORRECTNESS" cweid="585" abbrev="NP" type="NP_NONNULL_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR" category="CORRECTNESS" abbrev="HSC" type="HSC_HUGE_SHARED_STRING_CONSTANT" category="PERFORMANCE" abbrev="DP" type="DP_DO_INSIDE_DO_PRIVILEGED" category="MALICIOUS_CODE" abbrev="DP" type="DP_CREATE_CLASSLOADER_INSIDE_DO_PRIVILEGED" category="MALICIOUS_CODE" abbrev="DE" type="DE_MIGHT_DROP" category="BAD_PRACTICE" abbrev="Nm" type="NM_FUTURE_KEYWORD_USED_AS_IDENTIFIER" category="BAD_PRACTICE" abbrev="Dm" type="DMI_CONSTANT_DB_PASSWORD" category="SECURITY" cweid="259" abbrev="Dm" type="DMI_EMPTY_DB_PASSWORD" category="SECURITY" cweid="259" abbrev="Dm" type="DMI_THREAD_PASSED_WHERE_RUNNABLE_EXPECTED" category="STYLE" abbrev="Dm" type="DMI_COLLECTION_OF_URLS" category="PERFORMANCE" abbrev="Bx" type="DM_BOXED_PRIMITIVE_FOR_PARSING" category="PERFORMANCE" abbrev="Bx" type="DM_BOXED_PRIMITIVE_FOR_COMPARE" category="PERFORMANCE" abbrev="Bx" type="BX_UNBOXED_AND_COERCED_FOR_TERNARY_OPERATOR" category="PERFORMANCE" abbrev="Dm" type="DM_MONITOR_WAIT_ON_CONDITION" category="MT_CORRECTNESS" abbrev="NP" type="NP_ARGUMENT_MIGHT_BE_NULL" category="CORRECTNESS" abbrev="NP" type="NP_EQUALS_SHOULD_HANDLE_NULL_ARGUMENT" category="BAD_PRACTICE" abbrev="NP" type="NP_DEREFERENCE_OF_READLINE_VALUE" category="STYLE" abbrev="NP" type="NP_IMMEDIATE_DEREFERENCE_OF_READLINE" category="STYLE" abbrev="SQL" type="SQL_NONCONSTANT_STRING_PASSED_TO_EXECUTE" category="SECURITY" cweid="89" abbrev="SQL" type="SQL_PREPARED_STATEMENT_GENERATED_FROM_NONCONSTANT_STRING" category="SECURITY" cweid="89" abbrev="DC" type="DC_DOUBLECHECK" category="MT_CORRECTNESS" cweid="609" abbrev="DC" type="DC_PARTIALLY_CONSTRUCTED" category="MT_CORRECTNESS" cweid="609" abbrev="Eq" type="EQ_CHECK_FOR_OPERAND_NOT_COMPATIBLE_WITH_THIS" category="BAD_PRACTICE" abbrev="Eq" type="EQ_UNUSUAL" category="STYLE" abbrev="Eq" type="EQ_GETCLASS_AND_CLASS_CONSTANT" category="BAD_PRACTICE" abbrev="Eq" type="EQ_OVERRIDING_EQUALS_NOT_SYMMETRIC" category="CORRECTNESS" abbrev="Eq" type="EQ_DOESNT_OVERRIDE_EQUALS" category="STYLE" abbrev="Co" type="CO_SELF_NO_OBJECT" category="BAD_PRACTICE" abbrev="Co" type="CO_COMPARETO_INCORRECT_FLOATING" category="BAD_PRACTICE" abbrev="ES" type="ES_COMPARING_STRINGS_WITH_EQ" category="BAD_PRACTICE" abbrev="ES" type="ES_COMPARING_PARAMETER_STRING_WITH_EQ" category="BAD_PRACTICE" abbrev="HE" type="HE_SIGNATURE_DECLARES_HASHING_OF_UNHASHABLE_CLASS" category="CORRECTNESS" abbrev="HE" type="HE_USE_OF_UNHASHABLE_CLASS" category="CORRECTNESS" abbrev="Eq" type="EQ_COMPARETO_USE_OBJECT_EQUALS" category="BAD_PRACTICE" abbrev="HE" type="HE_INHERITS_EQUALS_USE_HASHCODE" category="BAD_PRACTICE" abbrev="Eq" type="EQ_ABSTRACT_SELF" category="BAD_PRACTICE" abbrev="Co" type="CO_ABSTRACT_SELF" category="BAD_PRACTICE" abbrev="IS" type="IS2_INCONSISTENT_SYNC" category="MT_CORRECTNESS" abbrev="TLW" type="TLW_TWO_LOCK_WAIT" category="MT_CORRECTNESS" abbrev="UR" type="UR_UNINIT_READ" category="CORRECTNESS" abbrev="UR" type="UR_UNINIT_READ_CALLED_FROM_SUPER_CONSTRUCTOR" category="CORRECTNESS" abbrev="UG" type="UG_SYNC_SET_UNSYNC_GET" category="MT_CORRECTNESS" abbrev="IC" type="IC_INIT_CIRCULARITY" category="STYLE" abbrev="IC" type="IC_SUPERCLASS_USES_SUBCLASS_DURING_INITIALIZATION" category="BAD_PRACTICE" abbrev="SI" type="SI_INSTANCE_BEFORE_FINALS_ASSIGNED" category="BAD_PRACTICE" abbrev="IS" type="IS_FIELD_NOT_GUARDED" category="MT_CORRECTNESS" abbrev="ML" type="ML_SYNC_ON_FIELD_TO_GUARD_CHANGING_THAT_FIELD" category="MT_CORRECTNESS" abbrev="ME" type="ME_ENUM_FIELD_SETTER" category="BAD_PRACTICE" abbrev="Nm" type="NM_VERY_CONFUSING" category="CORRECTNESS" abbrev="Nm" type="NM_VERY_CONFUSING_INTENTIONAL" category="BAD_PRACTICE" abbrev="Nm" type="NM_WRONG_PACKAGE" category="CORRECTNESS" abbrev="Nm" type="NM_WRONG_PACKAGE_INTENTIONAL" category="BAD_PRACTICE" abbrev="Nm" type="NM_CONFUSING" category="BAD_PRACTICE" abbrev="IA" type="IA_AMBIGUOUS_INVOCATION_OF_INHERITED_OR_OUTER_METHOD" category="STYLE" abbrev="Se" type="SE_PRIVATE_READ_RESOLVE_NOT_INHERITED" category="STYLE" abbrev="Se" type="SE_TRANSIENT_FIELD_OF_NONSERIALIZABLE_CLASS" category="STYLE" abbrev="Se" type="SE_NO_SUITABLE_CONSTRUCTOR" category="BAD_PRACTICE" abbrev="Se" type="SE_NO_SUITABLE_CONSTRUCTOR_FOR_EXTERNALIZATION" category="BAD_PRACTICE" abbrev="SnVI" type="SE_NO_SERIALVERSIONID" category="BAD_PRACTICE" abbrev="Se" type="SE_TRANSIENT_FIELD_NOT_RESTORED" category="BAD_PRACTICE" abbrev="Se" type="SE_BAD_FIELD" category="BAD_PRACTICE" abbrev="Se" type="SE_INNER_CLASS" category="BAD_PRACTICE" abbrev="Se" type="SE_BAD_FIELD_INNER_CLASS" category="BAD_PRACTICE" abbrev="Se" type="SE_BAD_FIELD_STORE" category="BAD_PRACTICE" abbrev="SF" type="SF_SWITCH_FALLTHROUGH" category="STYLE" cweid="484" abbrev="SF" type="SF_SWITCH_NO_DEFAULT" category="STYLE" abbrev="SF" type="SF_DEAD_STORE_DUE_TO_SWITCH_FALLTHROUGH" category="CORRECTNESS" cweid="484" abbrev="SF" type="SF_DEAD_STORE_DUE_TO_SWITCH_FALLTHROUGH_TO_THROW" category="CORRECTNESS" cweid="484" abbrev="UwF" type="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR" category="STYLE" abbrev="SIC" type="SIC_THREADLOCAL_DEADLY_EMBRACE" category="CORRECTNESS" abbrev="SIC" type="SIC_INNER_SHOULD_BE_STATIC" category="PERFORMANCE" abbrev="SIC" type="SIC_INNER_SHOULD_BE_STATIC_NEEDS_THIS" category="PERFORMANCE" abbrev="SIC" type="SIC_INNER_SHOULD_BE_STATIC_ANON" category="PERFORMANCE" abbrev="Wa" type="WA_AWAIT_NOT_IN_LOOP" category="MT_CORRECTNESS" abbrev="No" type="NO_NOTIFY_NOT_NOTIFYALL" category="MT_CORRECTNESS" abbrev="UC" type="UC_USELESS_CONDITION" category="STYLE" abbrev="UC" type="UC_USELESS_OBJECT" category="STYLE" abbrev="UC" type="UC_USELESS_OBJECT_STACK" category="STYLE" abbrev="RV" type="RV_RETURN_VALUE_IGNORED" category="CORRECTNESS" abbrev="RV" type="RV_RETURN_VALUE_IGNORED_INFERRED" category="STYLE" abbrev="RV" type="RV_RETURN_VALUE_IGNORED_NO_SIDE_EFFECT" category="STYLE" abbrev="RV" type="RV_RETURN_VALUE_IGNORED_BAD_PRACTICE" category="BAD_PRACTICE" cweid="253" abbrev="RV" type="RV_CHECK_FOR_POSITIVE_INDEXOF" category="STYLE" abbrev="RV" type="RV_DONT_JUST_NULL_CHECK_READLINE" category="STYLE" abbrev="NP" type="NP_CLOSING_NULL" category="CORRECTNESS" abbrev="NP" type="NP_STORE_INTO_NONNULL_FIELD" category="CORRECTNESS" abbrev="NP" type="NP_ALWAYS_NULL_EXCEPTION" category="CORRECTNESS" abbrev="NP" type="NP_PARAMETER_MUST_BE_NONNULL_BUT_MARKED_AS_NULLABLE" category="STYLE" abbrev="NP" type="NP_NULL_ON_SOME_PATH_FROM_RETURN_VALUE" category="STYLE" abbrev="NP" type="NP_NULL_ON_SOME_PATH_MIGHT_BE_INFEASIBLE" category="STYLE" abbrev="NP" type="NP_NULL_ON_SOME_PATH" category="CORRECTNESS" abbrev="NP" type="NP_NULL_ON_SOME_PATH_EXCEPTION" category="CORRECTNESS" abbrev="NP" type="NP_NULL_PARAM_DEREF" category="CORRECTNESS" abbrev="NP" type="NP_NULL_PARAM_DEREF_NONVIRTUAL" category="CORRECTNESS" abbrev="NP" type="NP_NULL_PARAM_DEREF_ALL_TARGETS_DANGEROUS" category="CORRECTNESS" abbrev="NP" type="NP_NONNULL_PARAM_VIOLATION" category="CORRECTNESS" abbrev="NP" type="NP_NONNULL_RETURN_VIOLATION" category="CORRECTNESS" abbrev="NP" type="NP_TOSTRING_COULD_RETURN_NULL" category="BAD_PRACTICE" abbrev="NP" type="NP_CLONE_COULD_RETURN_NULL" category="BAD_PRACTICE" abbrev="NP" type="NP_LOAD_OF_KNOWN_NULL_VALUE" category="STYLE" abbrev="NP" type="NP_GUARANTEED_DEREF_ON_EXCEPTION_PATH" category="CORRECTNESS" abbrev="OS" type="OS_OPEN_STREAM" category="BAD_PRACTICE" abbrev="OS" type="OS_OPEN_STREAM_EXCEPTION_PATH" category="BAD_PRACTICE" abbrev="UL" type="UL_UNRELEASED_LOCK" category="MT_CORRECTNESS" abbrev="UL" type="UL_UNRELEASED_LOCK_EXCEPTION_PATH" category="MT_CORRECTNESS" abbrev="RC" type="RC_REF_COMPARISON_BAD_PRACTICE" category="BAD_PRACTICE" abbrev="RC" type="RC_REF_COMPARISON_BAD_PRACTICE_BOOLEAN" category="BAD_PRACTICE" abbrev="RC" type="RC_REF_COMPARISON" category="CORRECTNESS" abbrev="FS" type="VA_FORMAT_STRING_USES_NEWLINE" category="BAD_PRACTICE" abbrev="FS" type="VA_FORMAT_STRING_BAD_CONVERSION" category="CORRECTNESS" abbrev="FS" type="VA_FORMAT_STRING_BAD_CONVERSION_TO_BOOLEAN" category="STYLE" abbrev="USELESS_STRING" type="VA_FORMAT_STRING_BAD_CONVERSION_FROM_ARRAY" category="CORRECTNESS" abbrev="FS" type="VA_FORMAT_STRING_NO_PREVIOUS_ARGUMENT" category="CORRECTNESS" abbrev="FS" type="VA_FORMAT_STRING_BAD_ARGUMENT" category="CORRECTNESS" abbrev="FS" type="VA_FORMAT_STRING_MISSING_ARGUMENT" category="CORRECTNESS" abbrev="FS" type="VA_FORMAT_STRING_ILLEGAL" category="CORRECTNESS" abbrev="FS" type="VA_FORMAT_STRING_EXTRA_ARGUMENTS_PASSED" category="CORRECTNESS" abbrev="FS" type="VA_FORMAT_STRING_EXPECTED_MESSAGE_FORMAT_SUPPLIED" category="CORRECTNESS" abbrev="EC" type="EC_UNRELATED_TYPES_USING_POINTER_EQUALITY" category="CORRECTNESS" abbrev="EC" type="EC_UNRELATED_TYPES" category="CORRECTNESS" abbrev="EC" type="EC_ARRAY_AND_NONARRAY" category="CORRECTNESS" abbrev="EC" type="EC_NULL_ARG" category="CORRECTNESS" abbrev="EC" type="EC_UNRELATED_INTERFACES" category="CORRECTNESS" abbrev="EC" type="EC_UNRELATED_CLASS_AND_INTERFACE" category="CORRECTNESS" abbrev="MWN" type="MWN_MISMATCHED_WAIT" category="MT_CORRECTNESS" abbrev="MWN" type="MWN_MISMATCHED_NOTIFY" category="MT_CORRECTNESS" abbrev="SA" type="SA_LOCAL_DOUBLE_ASSIGNMENT" category="STYLE" abbrev="LI" type="LI_LAZY_INIT_STATIC" category="MT_CORRECTNESS" cweid="543" abbrev="LI" type="LI_LAZY_INIT_UPDATE_STATIC" category="MT_CORRECTNESS" cweid="543" abbrev="JLM" type="JLM_JSR166_UTILCONCURRENT_MONITORENTER" category="MT_CORRECTNESS" abbrev="JLM" type="JLM_JSR166_LOCK_MONITORENTER" category="MT_CORRECTNESS" abbrev="ODR" type="ODR_OPEN_DATABASE_RESOURCE" category="BAD_PRACTICE" abbrev="ODR" type="ODR_OPEN_DATABASE_RESOURCE_EXCEPTION_PATH" category="BAD_PRACTICE" abbrev="IIL" type="IIL_ELEMENTS_GET_LENGTH_IN_LOOP" category="PERFORMANCE" experimental="true" abbrev="IIL" type="IIL_PREPARE_STATEMENT_IN_LOOP" category="PERFORMANCE" experimental="true" abbrev="IIL" type="IIL_PATTERN_COMPILE_IN_LOOP" category="PERFORMANCE" experimental="true" abbrev="IIL" type="IIL_PATTERN_COMPILE_IN_LOOP_INDIRECT" category="PERFORMANCE" experimental="true" abbrev="IJU" type="IJU_ASSERT_METHOD_INVOKED_FROM_RUN_METHOD" category="CORRECTNESS" abbrev="IJU" type="IJU_BAD_SUITE_METHOD" category="CORRECTNESS" abbrev="IJU" type="IJU_SETUP_NO_SUPER" category="CORRECTNESS" abbrev="IJU" type="IJU_TEARDOWN_NO_SUPER" category="CORRECTNESS" abbrev="IJU" type="IJU_SUITE_NOT_STATIC" category="CORRECTNESS" abbrev="IJU" type="IJU_NO_TESTS" category="CORRECTNESS" abbrev="BOA" type="BOA_BADLY_OVERRIDDEN_ADAPTER" category="CORRECTNESS" abbrev="SQL" type="SQL_BAD_RESULTSET_ACCESS" category="CORRECTNESS" abbrev="SQL" type="SQL_BAD_PREPARED_STATEMENT_ACCESS" category="CORRECTNESS" abbrev="EC" type="EC_INCOMPATIBLE_ARRAY_COMPARE" category="CORRECTNESS" abbrev="EC" type="EC_BAD_ARRAY_COMPARE" category="CORRECTNESS" abbrev="STI" type="STI_INTERRUPTED_ON_CURRENTTHREAD" category="CORRECTNESS" abbrev="STI" type="STI_INTERRUPTED_ON_UNKNOWNTHREAD" category="CORRECTNESS" abbrev="DLS" type="DLS_DEAD_STORE_OF_CLASS_LITERAL" category="CORRECTNESS" abbrev="DLS" type="DLS_DEAD_LOCAL_STORE_SHADOWS_FIELD" category="STYLE" abbrev="MF" type="MF_METHOD_MASKS_FIELD" category="CORRECTNESS" abbrev="MF" type="MF_CLASS_MASKS_FIELD" category="CORRECTNESS" abbrev="ISC" type="ISC_INSTANTIATE_STATIC_CLASS" category="BAD_PRACTICE" abbrev="REC" type="REC_CATCH_EXCEPTION" category="STYLE" cweid="396" abbrev="UM" type="UM_UNNECESSARY_MATH" category="PERFORMANCE" abbrev="MTIA" type="MTIA_SUSPECT_STRUTS_INSTANCE_FIELD" category="STYLE" abbrev="MTIA" type="MTIA_SUSPECT_SERVLET_INSTANCE_FIELD" category="STYLE" abbrev="PS" type="PS_PUBLIC_SEMAPHORES" category="STYLE" abbrev="ICAST" type="ICAST_INT_2_LONG_AS_INSTANT" category="CORRECTNESS" abbrev="NP" type="NP_NULL_INSTANCEOF" category="CORRECTNESS" abbrev="BC" type="BC_EQUALS_METHOD_SHOULD_WORK_FOR_ALL_OBJECTS" category="BAD_PRACTICE" abbrev="BC" type="BC_BAD_CAST_TO_CONCRETE_COLLECTION" category="STYLE" abbrev="BC" type="BC_UNCONFIRMED_CAST" category="STYLE" abbrev="BC" type="BC_UNCONFIRMED_CAST_OF_RETURN_VALUE" category="STYLE" abbrev="BC" type="BC_BAD_CAST_TO_ABSTRACT_COLLECTION" category="STYLE" abbrev="BSHIFT" type="ICAST_QUESTIONABLE_UNSIGNED_RIGHT_SHIFT" category="STYLE" abbrev="DMI" type="DMI_HARDCODED_ABSOLUTE_FILENAME" category="STYLE" abbrev="SWL" type="SWL_SLEEP_WITH_LOCK_HELD" category="MT_CORRECTNESS" abbrev="J2EE" type="J2EE_STORE_OF_NON_SERIALIZABLE_OBJECT_INTO_SESSION" category="BAD_PRACTICE" cweid="579" abbrev="DMI" type="DMI_NONSERIALIZABLE_OBJECT_WRITTEN" category="STYLE" abbrev="IMA" type="IMA_INEFFICIENT_MEMBER_ACCESS" category="PERFORMANCE" experimental="true" abbrev="XFB" type="XFB_XML_FACTORY_BYPASS" category="STYLE" abbrev="USM" type="USM_USELESS_SUBCLASS_METHOD" category="STYLE" experimental="true" abbrev="USM" type="USM_USELESS_ABSTRACT_METHOD" category="STYLE" experimental="true" abbrev="CI" type="CI_CONFUSED_INHERITANCE" category="STYLE" abbrev="GC" type="GC_UNCHECKED_TYPE_IN_GENERIC_CALL" category="BAD_PRACTICE" abbrev="GC" type="GC_UNRELATED_TYPES" category="CORRECTNESS" abbrev="PZ" type="PZ_DONT_REUSE_ENTRY_OBJECTS_IN_ITERATORS" category="BAD_PRACTICE" abbrev="DMI" type="DMI_ENTRY_SETS_MAY_REUSE_ENTRY_OBJECTS" category="BAD_PRACTICE" abbrev="DMI" type="DMI_USING_REMOVEALL_TO_CLEAR_COLLECTION" category="BAD_PRACTICE" abbrev="DMI" type="DMI_VACUOUS_SELF_COLLECTION_CALL" category="CORRECTNESS" abbrev="DMI" type="DMI_COLLECTIONS_SHOULD_NOT_CONTAIN_THEMSELVES" category="CORRECTNESS" abbrev="TQ" type="TQ_UNKNOWN_VALUE_USED_WHERE_ALWAYS_STRICTLY_REQUIRED" category="CORRECTNESS" abbrev="TQ" type="TQ_COMPARING_VALUES_WITH_INCOMPATIBLE_TYPE_QUALIFIERS" category="CORRECTNESS" abbrev="TQ" type="TQ_ALWAYS_VALUE_USED_WHERE_NEVER_REQUIRED" category="CORRECTNESS" abbrev="TQ" type="TQ_NEVER_VALUE_USED_WHERE_ALWAYS_REQUIRED" category="CORRECTNESS" abbrev="TQ" type="TQ_MAYBE_SOURCE_VALUE_REACHES_ALWAYS_SINK" category="CORRECTNESS" abbrev="TQ" type="TQ_MAYBE_SOURCE_VALUE_REACHES_NEVER_SINK" category="CORRECTNESS" abbrev="TQ" type="TQ_EXPLICIT_UNKNOWN_SOURCE_VALUE_REACHES_NEVER_SINK" category="STYLE" abbrev="TQ" type="TQ_EXPLICIT_UNKNOWN_SOURCE_VALUE_REACHES_ALWAYS_SINK" category="STYLE" abbrev="OBL" type="OBL_UNSATISFIED_OBLIGATION" category="EXPERIMENTAL" experimental="true" abbrev="OBL" type="OBL_UNSATISFIED_OBLIGATION_EXCEPTION_EDGE" category="EXPERIMENTAL" experimental="true" abbrev="RV" type="RV_RETURN_VALUE_OF_PUTIFABSENT_IGNORED" category="MT_CORRECTNESS" abbrev="LG" type="LG_LOST_LOGGER_DUE_TO_WEAK_REFERENCE" category="EXPERIMENTAL" abbrev="NP" type="NP_METHOD_RETURN_RELAXING_ANNOTATION" category="STYLE" abbrev="NP" type="NP_METHOD_PARAMETER_TIGHTENS_ANNOTATION" category="STYLE" === Dubious abbrev="IM" type="IM_MULTIPLYING_RESULT_OF_IREM" category="CORRECTNESS" abbrev="QF" type="QF_QUESTIONABLE_FOR_LOOP" category="STYLE" abbrev="QBA" type="QBA_QUESTIONABLE_BOOLEAN_ASSIGNMENT" category="CORRECTNESS" cweid="481" === Junk abbrev="SKIPPED" type="SKIPPED_CLASS_TOO_BIG" category="EXPERIMENTAL" abbrev="VR" type="VR_UNRESOLVABLE_REFERENCE" category="CORRECTNESS" experimental="true" abbrev="TEST" type="UNKNOWN" category="EXPERIMENTAL" abbrev="TEST" type="TESTING" category="EXPERIMENTAL" abbrev="TEST" type="TESTING1" category="EXPERIMENTAL" abbrev="TEST" type="TESTING2" category="EXPERIMENTAL" abbrev="TEST" type="TESTING3" category="EXPERIMENTAL" abbrev="CAA" type="CAA_COVARIANT_ARRAY_FIELD" category="STYLE" experimental="true" abbrev="CAA" type="CAA_COVARIANT_ARRAY_RETURN" category="STYLE" experimental="true" abbrev="CAA" type="CAA_COVARIANT_ARRAY_LOCAL" category="STYLE" experimental="true" abbrev="IIO" type="IIO_INEFFICIENT_INDEX_OF" category="PERFORMANCE" experimental="true" abbrev="IIO" type="IIO_INEFFICIENT_LAST_INDEX_OF" category="PERFORMANCE" experimental="true" abbrev="ITA" type="ITA_INEFFICIENT_TO_ARRAY" category="PERFORMANCE" experimental="true" abbrev="BAC" type="BAC_BAD_APPLET_CONSTRUCTOR" category="CORRECTNESS" experimental="true" abbrev="CD" type="CD_CIRCULAR_DEPENDENCY" category="STYLE" experimental="true" abbrev="FL" type="FL_MATH_USING_FLOAT_PRECISION" category="CORRECTNESS" abbrev="Bx" type="DM_FP_NUMBER_CTOR" category="PERFORMANCE" abbrev="NOISE" type="NOISE_NULL_DEREFERENCE" category="NOISE" abbrev="NOISE" type="NOISE_METHOD_CALL" category="NOISE" abbrev="NOISE" type="NOISE_FIELD_REFERENCE" category="NOISE" abbrev="NOISE" type="NOISE_OPERATION" category="NOISE" abbrev="AM" type="AM_CREATES_EMPTY_ZIP_FILE_ENTRY" category="BAD_PRACTICE" abbrev="AM" type="AM_CREATES_EMPTY_JAR_FILE_ENTRY" category="BAD_PRACTICE" abbrev="Dm" type="DMI_SCHEDULED_THREAD_POOL_EXECUTOR_WITH_ZERO_CORE_THREADS" category="CORRECTNESS" abbrev="FB" type="FB_UNEXPECTED_WARNING" category="CORRECTNESS" abbrev="FB" type="FB_MISSING_EXPECTED_WARNING" category="CORRECTNESS" ================================================ FILE: huntbugs/.classpath ================================================ ================================================ FILE: huntbugs/.gitignore ================================================ /target/ /huntbugs*.txt /huntbugs*.xml /huntbugs*.html /run.bat /procyon-decompiler-*.jar /dependency-reduced-pom.xml /dep /projects ================================================ FILE: huntbugs/.project ================================================ huntbugs org.eclipse.jdt.core.javabuilder org.eclipse.m2e.core.maven2Builder org.eclipse.jdt.core.javanature org.eclipse.m2e.core.maven2Nature ================================================ FILE: huntbugs/.settings/org.eclipse.core.resources.prefs ================================================ eclipse.preferences.version=1 encoding//src/main/java=UTF-8 encoding//src/main/resources=UTF-8 encoding//src/test/java=UTF-8 encoding/=UTF-8 ================================================ FILE: huntbugs/.settings/org.eclipse.jdt.core.prefs ================================================ eclipse.preferences.version=1 org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 org.eclipse.jdt.core.compiler.compliance=1.8 org.eclipse.jdt.core.compiler.problem.assertIdentifier=error org.eclipse.jdt.core.compiler.problem.enumIdentifier=error org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning org.eclipse.jdt.core.compiler.source=1.8 org.eclipse.jdt.core.formatter.align_type_members_on_columns=false org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=16 org.eclipse.jdt.core.formatter.alignment_for_arguments_in_annotation=0 org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant=16 org.eclipse.jdt.core.formatter.alignment_for_arguments_in_explicit_constructor_call=16 org.eclipse.jdt.core.formatter.alignment_for_arguments_in_method_invocation=20 org.eclipse.jdt.core.formatter.alignment_for_arguments_in_qualified_allocation_expression=16 org.eclipse.jdt.core.formatter.alignment_for_assignment=0 org.eclipse.jdt.core.formatter.alignment_for_binary_expression=20 org.eclipse.jdt.core.formatter.alignment_for_compact_if=16 org.eclipse.jdt.core.formatter.alignment_for_conditional_expression=80 org.eclipse.jdt.core.formatter.alignment_for_enum_constants=0 org.eclipse.jdt.core.formatter.alignment_for_expressions_in_array_initializer=16 org.eclipse.jdt.core.formatter.alignment_for_method_declaration=0 org.eclipse.jdt.core.formatter.alignment_for_multiple_fields=16 org.eclipse.jdt.core.formatter.alignment_for_parameters_in_constructor_declaration=16 org.eclipse.jdt.core.formatter.alignment_for_parameters_in_method_declaration=16 org.eclipse.jdt.core.formatter.alignment_for_resources_in_try=80 org.eclipse.jdt.core.formatter.alignment_for_selector_in_method_invocation=16 org.eclipse.jdt.core.formatter.alignment_for_superclass_in_type_declaration=16 org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_enum_declaration=16 org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_type_declaration=16 org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_constructor_declaration=16 org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_method_declaration=16 org.eclipse.jdt.core.formatter.alignment_for_union_type_in_multicatch=16 org.eclipse.jdt.core.formatter.blank_lines_after_imports=1 org.eclipse.jdt.core.formatter.blank_lines_after_package=1 org.eclipse.jdt.core.formatter.blank_lines_before_field=0 org.eclipse.jdt.core.formatter.blank_lines_before_first_class_body_declaration=0 org.eclipse.jdt.core.formatter.blank_lines_before_imports=1 org.eclipse.jdt.core.formatter.blank_lines_before_member_type=1 org.eclipse.jdt.core.formatter.blank_lines_before_method=1 org.eclipse.jdt.core.formatter.blank_lines_before_new_chunk=1 org.eclipse.jdt.core.formatter.blank_lines_before_package=0 org.eclipse.jdt.core.formatter.blank_lines_between_import_groups=1 org.eclipse.jdt.core.formatter.blank_lines_between_type_declarations=1 org.eclipse.jdt.core.formatter.brace_position_for_annotation_type_declaration=end_of_line org.eclipse.jdt.core.formatter.brace_position_for_anonymous_type_declaration=end_of_line org.eclipse.jdt.core.formatter.brace_position_for_array_initializer=end_of_line org.eclipse.jdt.core.formatter.brace_position_for_block=end_of_line org.eclipse.jdt.core.formatter.brace_position_for_block_in_case=end_of_line org.eclipse.jdt.core.formatter.brace_position_for_constructor_declaration=end_of_line org.eclipse.jdt.core.formatter.brace_position_for_enum_constant=end_of_line org.eclipse.jdt.core.formatter.brace_position_for_enum_declaration=end_of_line org.eclipse.jdt.core.formatter.brace_position_for_lambda_body=end_of_line org.eclipse.jdt.core.formatter.brace_position_for_method_declaration=end_of_line org.eclipse.jdt.core.formatter.brace_position_for_switch=end_of_line org.eclipse.jdt.core.formatter.brace_position_for_type_declaration=end_of_line org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_block_comment=false org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_javadoc_comment=false org.eclipse.jdt.core.formatter.comment.format_block_comments=true org.eclipse.jdt.core.formatter.comment.format_header=false org.eclipse.jdt.core.formatter.comment.format_html=true org.eclipse.jdt.core.formatter.comment.format_javadoc_comments=true org.eclipse.jdt.core.formatter.comment.format_line_comments=false org.eclipse.jdt.core.formatter.comment.format_source_code=false org.eclipse.jdt.core.formatter.comment.indent_parameter_description=false org.eclipse.jdt.core.formatter.comment.indent_root_tags=true org.eclipse.jdt.core.formatter.comment.insert_new_line_before_root_tags=insert org.eclipse.jdt.core.formatter.comment.insert_new_line_for_parameter=do not insert org.eclipse.jdt.core.formatter.comment.line_length=80 org.eclipse.jdt.core.formatter.comment.new_lines_at_block_boundaries=true org.eclipse.jdt.core.formatter.comment.new_lines_at_javadoc_boundaries=true org.eclipse.jdt.core.formatter.comment.preserve_white_space_between_code_and_line_comments=false org.eclipse.jdt.core.formatter.compact_else_if=true org.eclipse.jdt.core.formatter.continuation_indentation=2 org.eclipse.jdt.core.formatter.continuation_indentation_for_array_initializer=2 org.eclipse.jdt.core.formatter.disabling_tag=@formatter\:off org.eclipse.jdt.core.formatter.enabling_tag=@formatter\:on org.eclipse.jdt.core.formatter.format_guardian_clause_on_one_line=false org.eclipse.jdt.core.formatter.format_line_comment_starting_on_first_column=true org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_annotation_declaration_header=true org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_constant_header=true org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_declaration_header=true org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_type_header=true org.eclipse.jdt.core.formatter.indent_breaks_compare_to_cases=true org.eclipse.jdt.core.formatter.indent_empty_lines=false org.eclipse.jdt.core.formatter.indent_statements_compare_to_block=true org.eclipse.jdt.core.formatter.indent_statements_compare_to_body=true org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_cases=true org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_switch=false org.eclipse.jdt.core.formatter.indentation.size=4 org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_field=insert org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_local_variable=insert org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_method=insert org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_package=insert org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_parameter=do not insert org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_type=insert org.eclipse.jdt.core.formatter.insert_new_line_after_label=do not insert org.eclipse.jdt.core.formatter.insert_new_line_after_opening_brace_in_array_initializer=do not insert org.eclipse.jdt.core.formatter.insert_new_line_after_type_annotation=do not insert org.eclipse.jdt.core.formatter.insert_new_line_at_end_of_file_if_missing=do not insert org.eclipse.jdt.core.formatter.insert_new_line_before_catch_in_try_statement=do not insert org.eclipse.jdt.core.formatter.insert_new_line_before_closing_brace_in_array_initializer=do not insert org.eclipse.jdt.core.formatter.insert_new_line_before_else_in_if_statement=do not insert org.eclipse.jdt.core.formatter.insert_new_line_before_finally_in_try_statement=do not insert org.eclipse.jdt.core.formatter.insert_new_line_before_while_in_do_statement=do not insert org.eclipse.jdt.core.formatter.insert_new_line_in_empty_annotation_declaration=insert org.eclipse.jdt.core.formatter.insert_new_line_in_empty_anonymous_type_declaration=insert org.eclipse.jdt.core.formatter.insert_new_line_in_empty_block=insert org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_constant=insert org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_declaration=insert org.eclipse.jdt.core.formatter.insert_new_line_in_empty_method_body=insert org.eclipse.jdt.core.formatter.insert_new_line_in_empty_type_declaration=insert org.eclipse.jdt.core.formatter.insert_space_after_and_in_type_parameter=insert org.eclipse.jdt.core.formatter.insert_space_after_assignment_operator=insert org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation=do not insert org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation_type_declaration=do not insert org.eclipse.jdt.core.formatter.insert_space_after_binary_operator=insert org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_arguments=insert org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_parameters=insert org.eclipse.jdt.core.formatter.insert_space_after_closing_brace_in_block=insert org.eclipse.jdt.core.formatter.insert_space_after_closing_paren_in_cast=insert org.eclipse.jdt.core.formatter.insert_space_after_colon_in_assert=insert org.eclipse.jdt.core.formatter.insert_space_after_colon_in_case=insert org.eclipse.jdt.core.formatter.insert_space_after_colon_in_conditional=insert org.eclipse.jdt.core.formatter.insert_space_after_colon_in_for=insert org.eclipse.jdt.core.formatter.insert_space_after_colon_in_labeled_statement=insert org.eclipse.jdt.core.formatter.insert_space_after_comma_in_allocation_expression=insert org.eclipse.jdt.core.formatter.insert_space_after_comma_in_annotation=insert org.eclipse.jdt.core.formatter.insert_space_after_comma_in_array_initializer=insert org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_parameters=insert org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_throws=insert org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_constant_arguments=insert org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_declarations=insert org.eclipse.jdt.core.formatter.insert_space_after_comma_in_explicitconstructorcall_arguments=insert org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_increments=insert org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_inits=insert org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_parameters=insert org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_throws=insert org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_invocation_arguments=insert org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_field_declarations=insert org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_local_declarations=insert org.eclipse.jdt.core.formatter.insert_space_after_comma_in_parameterized_type_reference=insert org.eclipse.jdt.core.formatter.insert_space_after_comma_in_superinterfaces=insert org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_arguments=insert org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_parameters=insert org.eclipse.jdt.core.formatter.insert_space_after_ellipsis=insert org.eclipse.jdt.core.formatter.insert_space_after_lambda_arrow=insert org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_parameterized_type_reference=do not insert org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_arguments=do not insert org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_parameters=do not insert org.eclipse.jdt.core.formatter.insert_space_after_opening_brace_in_array_initializer=insert org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_allocation_expression=do not insert org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_reference=do not insert org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_annotation=do not insert org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_cast=do not insert org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_catch=do not insert org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_constructor_declaration=do not insert org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_enum_constant=do not insert org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_for=do not insert org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_if=do not insert org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_declaration=do not insert org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_invocation=do not insert org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_parenthesized_expression=do not insert org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_switch=do not insert org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_synchronized=do not insert org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_try=do not insert org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_while=do not insert org.eclipse.jdt.core.formatter.insert_space_after_postfix_operator=do not insert org.eclipse.jdt.core.formatter.insert_space_after_prefix_operator=do not insert org.eclipse.jdt.core.formatter.insert_space_after_question_in_conditional=insert org.eclipse.jdt.core.formatter.insert_space_after_question_in_wildcard=do not insert org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_for=insert org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_try_resources=insert org.eclipse.jdt.core.formatter.insert_space_after_unary_operator=do not insert org.eclipse.jdt.core.formatter.insert_space_before_and_in_type_parameter=insert org.eclipse.jdt.core.formatter.insert_space_before_assignment_operator=insert org.eclipse.jdt.core.formatter.insert_space_before_at_in_annotation_type_declaration=insert org.eclipse.jdt.core.formatter.insert_space_before_binary_operator=insert org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_parameterized_type_reference=do not insert org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_arguments=do not insert org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_parameters=do not insert org.eclipse.jdt.core.formatter.insert_space_before_closing_brace_in_array_initializer=insert org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_allocation_expression=do not insert org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_reference=do not insert org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_annotation=do not insert org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_cast=do not insert org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_catch=do not insert org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_constructor_declaration=do not insert org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_enum_constant=do not insert org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_for=do not insert org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_if=do not insert org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_declaration=do not insert org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_invocation=do not insert org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_parenthesized_expression=do not insert org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_switch=do not insert org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_synchronized=do not insert org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_try=do not insert org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_while=do not insert org.eclipse.jdt.core.formatter.insert_space_before_colon_in_assert=insert org.eclipse.jdt.core.formatter.insert_space_before_colon_in_case=do not insert org.eclipse.jdt.core.formatter.insert_space_before_colon_in_conditional=insert org.eclipse.jdt.core.formatter.insert_space_before_colon_in_default=do not insert org.eclipse.jdt.core.formatter.insert_space_before_colon_in_for=insert org.eclipse.jdt.core.formatter.insert_space_before_colon_in_labeled_statement=do not insert org.eclipse.jdt.core.formatter.insert_space_before_comma_in_allocation_expression=do not insert org.eclipse.jdt.core.formatter.insert_space_before_comma_in_annotation=do not insert org.eclipse.jdt.core.formatter.insert_space_before_comma_in_array_initializer=do not insert org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_parameters=do not insert org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_throws=do not insert org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_constant_arguments=do not insert org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_declarations=do not insert org.eclipse.jdt.core.formatter.insert_space_before_comma_in_explicitconstructorcall_arguments=do not insert org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_increments=do not insert org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_inits=do not insert org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_parameters=do not insert org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_throws=do not insert org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_invocation_arguments=do not insert org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_field_declarations=do not insert org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_local_declarations=do not insert org.eclipse.jdt.core.formatter.insert_space_before_comma_in_parameterized_type_reference=do not insert org.eclipse.jdt.core.formatter.insert_space_before_comma_in_superinterfaces=do not insert org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_arguments=do not insert org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_parameters=do not insert org.eclipse.jdt.core.formatter.insert_space_before_ellipsis=do not insert org.eclipse.jdt.core.formatter.insert_space_before_lambda_arrow=insert org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_parameterized_type_reference=do not insert org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_arguments=do not insert org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_parameters=do not insert org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_annotation_type_declaration=insert org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_anonymous_type_declaration=insert org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_array_initializer=insert org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_block=insert org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_constructor_declaration=insert org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_constant=insert org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_declaration=insert org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_method_declaration=insert org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_switch=insert org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_type_declaration=insert org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_allocation_expression=do not insert org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_reference=do not insert org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_type_reference=do not insert org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation=do not insert org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation_type_member_declaration=do not insert org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_catch=insert org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_constructor_declaration=do not insert org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_enum_constant=do not insert org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_for=insert org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_if=insert org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_declaration=do not insert org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_invocation=do not insert org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_parenthesized_expression=do not insert org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_switch=insert org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_synchronized=insert org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_try=insert org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_while=insert org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_return=insert org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_throw=insert org.eclipse.jdt.core.formatter.insert_space_before_postfix_operator=do not insert org.eclipse.jdt.core.formatter.insert_space_before_prefix_operator=do not insert org.eclipse.jdt.core.formatter.insert_space_before_question_in_conditional=insert org.eclipse.jdt.core.formatter.insert_space_before_question_in_wildcard=do not insert org.eclipse.jdt.core.formatter.insert_space_before_semicolon=do not insert org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_for=do not insert org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_try_resources=do not insert org.eclipse.jdt.core.formatter.insert_space_before_unary_operator=do not insert org.eclipse.jdt.core.formatter.insert_space_between_brackets_in_array_type_reference=do not insert org.eclipse.jdt.core.formatter.insert_space_between_empty_braces_in_array_initializer=do not insert org.eclipse.jdt.core.formatter.insert_space_between_empty_brackets_in_array_allocation_expression=do not insert org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_annotation_type_member_declaration=do not insert org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_constructor_declaration=do not insert org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_enum_constant=do not insert org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_declaration=do not insert org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_invocation=do not insert org.eclipse.jdt.core.formatter.join_lines_in_comments=true org.eclipse.jdt.core.formatter.join_wrapped_lines=true org.eclipse.jdt.core.formatter.keep_else_statement_on_same_line=false org.eclipse.jdt.core.formatter.keep_empty_array_initializer_on_one_line=false org.eclipse.jdt.core.formatter.keep_imple_if_on_one_line=false org.eclipse.jdt.core.formatter.keep_then_statement_on_same_line=false org.eclipse.jdt.core.formatter.lineSplit=120 org.eclipse.jdt.core.formatter.never_indent_block_comments_on_first_column=false org.eclipse.jdt.core.formatter.never_indent_line_comments_on_first_column=false org.eclipse.jdt.core.formatter.number_of_blank_lines_at_beginning_of_method_body=0 org.eclipse.jdt.core.formatter.number_of_empty_lines_to_preserve=1 org.eclipse.jdt.core.formatter.put_empty_statement_on_new_line=true org.eclipse.jdt.core.formatter.tabulation.char=space org.eclipse.jdt.core.formatter.tabulation.size=4 org.eclipse.jdt.core.formatter.use_on_off_tags=false org.eclipse.jdt.core.formatter.use_tabs_only_for_leading_indentations=false org.eclipse.jdt.core.formatter.wrap_before_binary_operator=true org.eclipse.jdt.core.formatter.wrap_before_or_operator_multicatch=true org.eclipse.jdt.core.formatter.wrap_outer_expressions_when_nested=false ================================================ FILE: huntbugs/.settings/org.eclipse.jdt.ui.prefs ================================================ eclipse.preferences.version=1 editor_save_participant_org.eclipse.jdt.ui.postsavelistener.cleanup=true formatter_profile=_StreamEx formatter_settings_version=12 org.eclipse.jdt.ui.javadoc=true org.eclipse.jdt.ui.text.custom_code_templates=