2021-08-20 16:12:05 +02:00
# PMD - source code analyzer
2012-11-17 17:00:27 +01:00
2018-01-11 07:48:19 +00:00
[![Join the chat at https://gitter.im/pmd/pmd ](https://badges.gitter.im/pmd/pmd.svg )](https://gitter.im/pmd/pmd?utm_source=badge& utm_medium=badge& utm_campaign=pr-badge& utm_content=badge)
2021-04-15 16:20:22 +02:00
[![Build Status ](https://github.com/pmd/pmd/workflows/build/badge.svg?branch=master )](https://github.com/pmd/pmd/actions)
2017-02-03 16:27:38 -03:00
[![Maven Central ](https://maven-badges.herokuapp.com/maven-central/net.sourceforge.pmd/pmd/badge.svg )](https://maven-badges.herokuapp.com/maven-central/net.sourceforge.pmd/pmd)
2020-09-17 12:04:14 -04:00
[![Reproducible Builds ](https://img.shields.io/badge/Reproducible_Builds-ok-green?labelColor=blue )](https://github.com/jvm-repo-rebuild/reproducible-central#net.sourceforge.pmd:pmd)
2017-07-08 20:42:58 +02:00
[![Coverage Status ](https://coveralls.io/repos/github/pmd/pmd/badge.svg )](https://coveralls.io/github/pmd/pmd)
2018-11-12 12:56:14 +01:00
[![Codacy Badge ](https://api.codacy.com/project/badge/Grade/a674ee8642ed44c6ba7633626ee95967 )](https://www.codacy.com/app/pmd/pmd?utm_source=github.com& utm_medium=referral& utm_content=pmd/pmd& utm_campaign=Badge_Grade)
2020-04-17 16:13:34 +02:00
[![Contributor Covenant ](https://img.shields.io/badge/Contributor%20Covenant-v2.0%20adopted-ff69b4.svg )](code_of_conduct.md)
2021-08-20 16:12:05 +02:00
[![Documentation (latest) ](https://img.shields.io/badge/docs-latest-green )](https://pmd.github.io/latest/)
2015-11-14 17:53:52 +01:00
2017-01-05 11:27:08 +01:00
**PMD** is a source code analyzer. It finds common programming flaws like unused variables, empty catch blocks,
2021-08-20 16:12:05 +02:00
unnecessary object creation, and so forth. It supports many languages. It can be extended with custom rules.
2021-09-02 11:14:57 +02:00
It uses JavaCC and Antlr to parse source files into abstract syntax trees (AST) and runs rules against them to find violations.
2021-08-20 16:12:05 +02:00
Rules can be written in Java or using a XPath query.
It supports Java, JavaScript, Salesforce.com Apex and Visualforce,
2019-09-28 16:21:58 +03:00
Modelica, PLSQL, Apache Velocity, XML, XSL, Scala.
2012-11-17 17:00:27 +01:00
2017-01-05 11:27:08 +01:00
Additionally it includes **CPD** , the copy-paste-detector. CPD finds duplicated code in
2019-09-28 16:21:58 +03:00
C/C++, C#, Dart, Fortran, Go, Groovy, Java, JavaScript, JSP, Kotlin, Lua, Matlab, Modelica,
2020-05-08 10:55:55 +02:00
Objective-C, Perl, PHP, PLSQL, Python, Ruby, Salesforce.com Apex, Scala, Swift, Visualforce and XML.
2015-11-14 17:53:52 +01:00
2021-08-20 16:12:05 +02:00
In the future we hope to add support for data/control flow analysis and automatic (quick) fixes where
it makes sense.
## 🚀 Installation and Usage
Download the latest binary zip from the [releases ](https://github.com/pmd/pmd/releases/latest )
and extract it somewhere.
Execute `bin/run.sh pmd` or `bin\pmd.bat` .
See also [Getting Started ](https://pmd.github.io/latest/pmd_userdocs_installation.html )
**Demo:**
2021-09-02 12:20:34 +02:00
This shows how PMD can detect for loops, that can be replaced by for-each loops.
2021-08-20 16:12:05 +02:00
2021-09-02 12:20:34 +02:00
![Demo ](docs/images/userdocs/pmd-demo.gif )
2021-08-20 16:12:05 +02:00
There are plugins for Maven and Gradle as well as for various IDEs.
See [Tools / Integrations ](https://pmd.github.io/latest/pmd_userdocs_tools.html )
## ℹ ️ How to get support?
2020-02-15 19:07:20 +01:00
2021-01-07 12:09:10 +01:00
* How do I? -- Ask a question on [StackOverflow ](https://stackoverflow.com/questions/tagged/pmd )
or on [discussions ](https://github.com/pmd/pmd/discussions ).
* I got this error, why? -- Ask a question on [StackOverflow ](https://stackoverflow.com/questions/tagged/pmd )
or on [discussions ](https://github.com/pmd/pmd/discussions ).
2020-02-15 19:07:20 +01:00
* I got this error and I'm sure it's a bug -- file an [issue ](https://github.com/pmd/pmd/issues ).
2021-01-07 12:09:10 +01:00
* I have an idea/request/question -- create a new [discussion ](https://github.com/pmd/pmd/discussions ).
2020-02-15 19:07:20 +01:00
* I have a quick question -- ask on our [Gitter chat ](https://gitter.im/pmd/pmd ).
* Where's your documentation? -- < https: // pmd . github . io / latest />
2021-08-20 16:12:05 +02:00
## 🤝 Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
2013-05-01 14:56:22 +02:00
2017-01-05 11:27:08 +01:00
Our latest source of PMD can be found on [GitHub ](https://github.com/pmd/pmd ). Fork us!
2015-11-14 17:53:52 +01:00
2017-01-05 11:27:08 +01:00
* [How to build PMD ](BUILDING.md )
* [How to contribute to PMD ](CONTRIBUTING.md )
2015-11-14 17:53:52 +01:00
2019-03-03 11:54:41 +01:00
The rule designer is developed over at [pmd/pmd-designer ](https://github.com/pmd/pmd-designer ).
Please see [its README ](https://github.com/pmd/pmd-designer#contributing ) for
developer documentation.
2021-08-20 16:12:05 +02:00
## 🪙 Financial Contributors
Become a financial contributor and help us sustain our community. [Contribute ](https://opencollective.com/pmd/contribute )
2021-08-20 16:16:31 +02:00
## ✨ Contributors
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
<!-- ALL - CONTRIBUTORS - LIST:START - Do not remove or modify this section -->
<!-- prettier - ignore - start -->
<!-- markdownlint - disable -->
< table >
< tr >
2021-09-09 14:43:57 +02:00
< td align = "center" > < a href = "https://github.com/0xflotus" > < img src = "https://avatars.githubusercontent.com/u/26602940?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > 0xflotus< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=0xflotus" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3A0xflotus" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/1henni" > < img src = "https://avatars.githubusercontent.com/u/6975354?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > 1henni< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3A1henni" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://alinew.tistory.com/" > < img src = "https://avatars.githubusercontent.com/u/42788336?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > ALiNew< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ASukJinKim" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://www.linkedin.com/in/abhijit-sarkar" > < img src = "https://avatars.githubusercontent.com/u/1302775?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Abhijit Sarkar< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aasarkar" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://www.linkedin.com/in/abhishek-kr09/" > < img src = "https://avatars.githubusercontent.com/u/48255244?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Abhishek Kumar< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AAbhishek-kumar09" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/Adam-" > < img src = "https://avatars.githubusercontent.com/u/309739?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Adam< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AAdam-" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://vocabhunter.github.io/" > < img src = "https://avatars.githubusercontent.com/u/15148135?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Adam Carroll< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AAdamCarroll" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/farmaazon" > < img src = "https://avatars.githubusercontent.com/u/3919101?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Adam Obuchowicz< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Afarmaazon" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/demonfiddler" > < img src = "https://avatars.githubusercontent.com/u/14012347?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Adrian Price< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ademonfiddler" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/alecharp" > < img src = "https://avatars.githubusercontent.com/u/985955?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Adrien Lecharpentier< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aalecharp" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/aidan-harding" > < img src = "https://avatars.githubusercontent.com/u/35935718?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Aidan Harding< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aaidan-harding" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/akshatbahety" > < img src = "https://avatars.githubusercontent.com/u/17676203?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Akshat Bahety< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=akshatbahety" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aakshatbahety" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/akshayt23" > < img src = "https://avatars.githubusercontent.com/u/8946657?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Akshay Thapa< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aakshayt23" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://alanbuttars.com/" > < img src = "https://avatars.githubusercontent.com/u/10012095?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Alan Buttars< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aalanbuttars" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "http://blog.anvard.org/" > < img src = "https://avatars.githubusercontent.com/u/326739?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Alan Hohn< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AAlanHohn" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/albfernandez" > < img src = "https://avatars.githubusercontent.com/u/2701620?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Alberto Fernández< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=albfernandez" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aalbfernandez" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/ARentz07" > < img src = "https://avatars.githubusercontent.com/u/2237314?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Alex Rentz< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AARentz07" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://alexsaveau.dev/" > < img src = "https://avatars.githubusercontent.com/u/9490724?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Alex Saveau< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ASUPERCILEX" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/vovkss" > < img src = "https://avatars.githubusercontent.com/u/5391412?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Alex Shesterov< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=vovkss" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Avovkss" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/amarkevich" > < img src = "https://avatars.githubusercontent.com/u/62415?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Alexey Markevich< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aamarkevich" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://nalexn.github.io/" > < img src = "https://avatars.githubusercontent.com/u/1594746?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Alexey Naumov< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Analexn" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/ylexus" > < img src = "https://avatars.githubusercontent.com/u/6009806?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Alexey Yudichev< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aylexus" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://www.assaabloy.com/en/com/solutions/technology-platforms/" > < img src = "https://avatars.githubusercontent.com/u/5415786?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Alix< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aalixwar" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/alwa" > < img src = "https://avatars.githubusercontent.com/u/1206247?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Alix< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aalwa" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://dev.to/shahamish" > < img src = "https://avatars.githubusercontent.com/u/7998085?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Amish Shah< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ashahamish150294" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://in.linkedin.com/in/amit-kumar-prasad-46300a26" > < img src = "https://avatars.githubusercontent.com/u/5464002?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Amit Prasad< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aamitpd" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://amitosh.in/" > < img src = "https://avatars.githubusercontent.com/u/16816719?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Amitosh Swain Mahapatra< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Arecrsn" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/anand13s" > < img src = "https://avatars.githubusercontent.com/u/3236002?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Anand Subramanian< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=anand13s" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aanand13s" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://atrosinenko.github.io/" > < img src = "https://avatars.githubusercontent.com/u/9654772?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Anatoly Trosinenko< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=atrosinenko" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aatrosinenko" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/andipabst" > < img src = "https://avatars.githubusercontent.com/u/9639382?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Andi Pabst< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=andipabst" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aandipabst" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/regrog" > < img src = "https://avatars.githubusercontent.com/u/7606880?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Andrea< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aregrog" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/aaime" > < img src = "https://avatars.githubusercontent.com/u/325433?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Andrea Aime< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aaaime" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/adangel" > < img src = "https://avatars.githubusercontent.com/u/1573684?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Andreas Dangel< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=adangel" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/commits?author=adangel" title = "Documentation" > 📖< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aadangel" title = "Bug reports" > 🐛< / a > < a href = "#maintenance-adangel" title = "Maintenance" > 🚧< / a > < / td >
< td align = "center" > < a href = "http://andreas.markussen.dk/" > < img src = "https://avatars.githubusercontent.com/u/6911804?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Andreas Markussen< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aandreasmarkussen" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/aaschmid" > < img src = "https://avatars.githubusercontent.com/u/567653?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Andreas Schmid< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aaaschmid" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/AndreasTu" > < img src = "https://avatars.githubusercontent.com/u/14334055?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Andreas Turban< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AAndreasTu" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/strkkk" > < img src = "https://avatars.githubusercontent.com/u/8901354?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Andrei Paikin< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Astrkkk" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/mcandre" > < img src = "https://avatars.githubusercontent.com/u/5316?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Andrew< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amcandre" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/wollamshram" > < img src = "https://avatars.githubusercontent.com/u/18718483?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Andrew Green< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Awollamshram" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/andrey-fomin" > < img src = "https://avatars.githubusercontent.com/u/1307013?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Andrey Fomin< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aandrey-fomin" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://ahitrin.github.io/" > < img src = "https://avatars.githubusercontent.com/u/587891?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Andrey Hitrin< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aahitrin" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://www.linkedin.com/in/andrey-mochalov-063751108/?locale=en_US" > < img src = "https://avatars.githubusercontent.com/u/3083503?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Andrey Mochalov< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=epidemia" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aepidemia" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/Andro72" > < img src = "https://avatars.githubusercontent.com/u/1181872?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Andro72< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AAndro72" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/Andrwyw" > < img src = "https://avatars.githubusercontent.com/u/4827118?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Andrwyw< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AAndrwyw" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/catalandres" > < img src = "https://avatars.githubusercontent.com/u/1649037?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Andrés Catalán< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Acatalandres" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://www.andypattenden.co.uk/" > < img src = "https://avatars.githubusercontent.com/u/6861048?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Andy Pattenden< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aandypattenden" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "http://andrewray.me/" > < img src = "https://avatars.githubusercontent.com/u/79215?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Andy Ray< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AAndrewRayCode" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/andyrobinson" > < img src = "https://avatars.githubusercontent.com/u/811521?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Andy Robinson< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aandyrobinson" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://2639.dedyn.io/" > < img src = "https://avatars.githubusercontent.com/u/13392804?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Andy-2639< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AAndy-2639" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/ankushsomani09" > < img src = "https://avatars.githubusercontent.com/u/2452618?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Ankush Somani< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aankushsomani09" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/anmolgkv" > < img src = "https://avatars.githubusercontent.com/u/8535288?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Anmol Kumar< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aanmolgkv" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://anthonywhitford.com/" > < img src = "https://avatars.githubusercontent.com/u/123887?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Anthony Whitford< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aawhitford" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/AnthonyKot" > < img src = "https://avatars.githubusercontent.com/u/17334248?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > AnthonyKot< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AAnthonyKot" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/AravindHegde" > < img src = "https://avatars.githubusercontent.com/u/50856835?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Aravind Hegde< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AAravindHegde" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/ardaasln" > < img src = "https://avatars.githubusercontent.com/u/22152020?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Arda Aslan< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aardaasln" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://www.intentionet.com/team/ari-fogel/" > < img src = "https://avatars.githubusercontent.com/u/7737874?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Ari Fogel< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aarifogel" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/ajeans" > < img src = "https://avatars.githubusercontent.com/u/2376384?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Arnaud Jeansen< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=ajeans" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aajeans" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://arpitx165.github.io/" > < img src = "https://avatars.githubusercontent.com/u/12485895?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Arpit Koolwal< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aarpitx165" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://kroartem.wordpress.com/" > < img src = "https://avatars.githubusercontent.com/u/1813101?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Artem< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=KroArtem" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3AKroArtem" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://www.linkedin.com/in/artyom-burylov-8b62b4159/" > < img src = "https://avatars.githubusercontent.com/u/16266572?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Artem< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aswsms" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/dotdoom" > < img src = "https://avatars.githubusercontent.com/u/561122?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Artem Sheremet< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Adotdoom" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/pandaadb" > < img src = "https://avatars.githubusercontent.com/u/15109364?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Artur< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Apandaadb" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/arturbosch" > < img src = "https://avatars.githubusercontent.com/u/20924106?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Artur Bosch< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aarturbosch" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/arturdryomov" > < img src = "https://avatars.githubusercontent.com/u/200401?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Artur Dryomov< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aarturdryomov" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/osek666" > < img src = "https://avatars.githubusercontent.com/u/676655?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Artur Ossowski< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aosek666" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/AshTheMash" > < img src = "https://avatars.githubusercontent.com/u/67153866?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > AshTheMash< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AAshTheMash" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://www.linkedin.com/in/ashishrana160796/" > < img src = "https://avatars.githubusercontent.com/u/19948632?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Ashish Rana< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aashishrana160796" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/atulkaushal" > < img src = "https://avatars.githubusercontent.com/u/5075912?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Atul Kaushal< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aatulkaushal" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/augustboland" > < img src = "https://avatars.githubusercontent.com/u/40546359?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > August Boland< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aaugustboland" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/hudec117" > < img src = "https://avatars.githubusercontent.com/u/10981949?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Aurel Hudec< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ahudec117" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/AustinShalit" > < img src = "https://avatars.githubusercontent.com/u/3799260?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Austin Shalit< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AAustinShalit" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/AustinTice" > < img src = "https://avatars.githubusercontent.com/u/16217050?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Austin Tice< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AAustinTice" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/kayoub5" > < img src = "https://avatars.githubusercontent.com/u/1814900?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Ayoub Kaanich< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Akayoub5" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/djydewang" > < img src = "https://avatars.githubusercontent.com/u/18324858?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > BBG< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=djydewang" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/commits?author=djydewang" title = "Documentation" > 📖< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Adjydewang" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/Bartheleway" > < img src = "https://avatars.githubusercontent.com/u/1260779?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Barthélemy L.< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ABartheleway" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/rajiff" > < img src = "https://avatars.githubusercontent.com/u/1080415?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Basavaraj K N< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Arajiff" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/grv87" > < img src = "https://avatars.githubusercontent.com/u/2035596?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Basil Peace< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Agrv87" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/Belle-PL" > < img src = "https://avatars.githubusercontent.com/u/86593041?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Belle< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ABelle-PL" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/blerner" > < img src = "https://avatars.githubusercontent.com/u/918464?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Ben Lerner< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ablerner" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://www.linkedin.com/in/benmanes" > < img src = "https://avatars.githubusercontent.com/u/378614?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Ben Manes< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aben-manes" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "http://www.benmccann.com/" > < img src = "https://avatars.githubusercontent.com/u/322311?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Ben McCann< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Abenmccann" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/PaperTsar" > < img src = "https://avatars.githubusercontent.com/u/17526848?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Bendegúz Nagy< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3APaperTsar" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/bennetyeesc" > < img src = "https://avatars.githubusercontent.com/u/20605573?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Bennet S Yee< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Abennetyeesc" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://cormoran.io/" > < img src = "https://avatars.githubusercontent.com/u/2117911?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Benoit Lacelle< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ablacelle" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/bmacedo" > < img src = "https://avatars.githubusercontent.com/u/3941421?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Bernardo Macêdo< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Abmacedo" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/BerndFarkaDyna" > < img src = "https://avatars.githubusercontent.com/u/39689620?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Bernd Farka< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ABerndFarkaDyna" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/cynthux" > < img src = "https://avatars.githubusercontent.com/u/7284580?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Betina Cynthia Mamani< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Acynthux" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/pamidi99" > < img src = "https://avatars.githubusercontent.com/u/16791958?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Bhanu Prakash Pamidi< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=pamidi99" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Apamidi99" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/bthanki" > < img src = "https://avatars.githubusercontent.com/u/24976656?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Bhargav Thanki< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Abthanki" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/binu-r" > < img src = "https://avatars.githubusercontent.com/u/16700196?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Binu R J< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Abinu-r" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/Vampire" > < img src = "https://avatars.githubusercontent.com/u/325196?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Björn Kautler< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=Vampire" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3AVampire" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/Blightbuster" > < img src = "https://avatars.githubusercontent.com/u/24388294?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Blightbuster< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ABlightbuster" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/blindpirate" > < img src = "https://avatars.githubusercontent.com/u/12689835?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Bo Zhang< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ablindpirate" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/rwhogg" > < img src = "https://avatars.githubusercontent.com/u/2373856?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Bob "Wombat" Hogg< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Arwhogg" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/CasualSuperman" > < img src = "https://avatars.githubusercontent.com/u/516927?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Bobby Wertman< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ACasualSuperman" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/refactormyself" > < img src = "https://avatars.githubusercontent.com/u/17991837?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Bolarinwa Saheed Olayemi< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=refactormyself" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Arefactormyself" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/boris-petrov" > < img src = "https://avatars.githubusercontent.com/u/278940?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Boris Petrov< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aboris-petrov" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "http://www.bradkent.com/" > < img src = "https://avatars.githubusercontent.com/u/2137404?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Brad Kent< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Abkdotcom" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/brandonmikeska" > < img src = "https://avatars.githubusercontent.com/u/3750009?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Brandon Mikeska< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Abrandonmikeska" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/justgrumpy" > < img src = "https://avatars.githubusercontent.com/u/1242388?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Brian Batronis< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ajustgrumpy" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/john3300" > < img src = "https://avatars.githubusercontent.com/u/10662490?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Brian Johnson< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ajohn3300" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://blog.arkey.fr/" > < img src = "https://avatars.githubusercontent.com/u/803621?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Brice Dutheil< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=bric3" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Abric3" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/bmbferreira" > < img src = "https://avatars.githubusercontent.com/u/626180?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Bruno Ferreira< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Abmbferreira" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/birdflyer-lszo" > < img src = "https://avatars.githubusercontent.com/u/511866?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Bruno Ritz< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Abirdflyer-lszo" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/mistercam" > < img src = "https://avatars.githubusercontent.com/u/124565?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Cameron Donaldson< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amistercam" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/l0s" > < img src = "https://avatars.githubusercontent.com/u/210451?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Carlos Macasaet< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Al0s" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://c-otto.de/" > < img src = "https://avatars.githubusercontent.com/u/344948?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Carsten Otto< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AC-Otto" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/HoushCE29" > < img src = "https://avatars.githubusercontent.com/u/22387324?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Charlie Housh< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AHoushCE29" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/ChuckJonas" > < img src = "https://avatars.githubusercontent.com/u/5217568?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Charlie Jonas< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AChuckJonas" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "http://www.linkedin.com/in/chonton" > < img src = "https://avatars.githubusercontent.com/u/1444125?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Chas Honton< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Achonton" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/willamette" > < img src = "https://avatars.githubusercontent.com/u/1435016?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Chen Yang< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Awillamette" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/bashagithub" > < img src = "https://avatars.githubusercontent.com/u/25314601?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Chotu< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Abashagithub" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/tophersmith" > < img src = "https://avatars.githubusercontent.com/u/812876?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Chris Smith< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Atophersmith" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://nelkinda.com/" > < img src = "https://avatars.githubusercontent.com/u/692345?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Christian Hujer< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Achristianhujer" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/Pontesegger" > < img src = "https://avatars.githubusercontent.com/u/2060477?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Christian Pontesegger< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3APontesegger" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://www.i-love-software-engineering.de/" > < img src = "https://avatars.githubusercontent.com/u/3480324?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > ChristianWulf< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AChristianWulf" title = "Bug reports" > 🐛< / a > < / td >
2021-09-02 11:54:15 +02:00
< td align = "center" > < a href = "https://github.com/chrisdutz" > < img src = "https://avatars.githubusercontent.com/u/651105?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Christofer Dutz< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=chrisdutz" title = "Code" > 💻< / a > < / td >
2021-09-09 14:43:57 +02:00
< td align = "center" > < a href = "https://github.com/DaDummy" > < img src = "https://avatars.githubusercontent.com/u/11466036?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Christoffer Anselm< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ADaDummy" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/0cv" > < img src = "https://avatars.githubusercontent.com/u/1253866?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Christophe Vidal< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3A0cv" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/cdancy" > < img src = "https://avatars.githubusercontent.com/u/7871459?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Christopher Dancy< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Acdancy" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "http://clemensprill.de/" > < img src = "https://avatars.githubusercontent.com/u/6271057?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Clemens Prill< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AGiantCrocodile" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/Clint-Chester" > < img src = "https://avatars.githubusercontent.com/u/12729644?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Clint Chester< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=Clint-Chester" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3AClint-Chester" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/oowekyala" > < img src = "https://avatars.githubusercontent.com/u/24524930?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Clément Fournier< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=oowekyala" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/commits?author=oowekyala" title = "Documentation" > 📖< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aoowekyala" title = "Bug reports" > 🐛< / a > < a href = "#maintenance-oowekyala" title = "Maintenance" > 🚧< / a > < / td >
< td align = "center" > < a href = "https://www.codacy.com/" > < img src = "https://avatars.githubusercontent.com/u/23704769?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Codacy Badger< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Acodacy-badger" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/Code-Nil" > < img src = "https://avatars.githubusercontent.com/u/30105281?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Code-Nil< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ACode-Nil" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/ColColonCleaner" > < img src = "https://avatars.githubusercontent.com/u/1903507?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > ColColonCleaner< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AColColonCleaner" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/colini" > < img src = "https://avatars.githubusercontent.com/u/2913561?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Colin Ingarfield< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Acolini" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://candrews.integralblue.com/" > < img src = "https://avatars.githubusercontent.com/u/194713?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Craig Andrews< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Acandrews" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/cmuchinsky" > < img src = "https://avatars.githubusercontent.com/u/23175991?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Craig Muchinsky< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Acmuchinsky" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/CyrilSicard" > < img src = "https://avatars.githubusercontent.com/u/45353161?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Cyril< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=CyrilSicard" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3ACyrilSicard" title = "Bug reports" > 🐛< / a > < / td >
2021-09-02 11:54:15 +02:00
< td align = "center" > < a href = "https://github.com/daleanson" > < img src = "https://avatars.githubusercontent.com/u/2112276?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Dale< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=daleanson" title = "Code" > 💻< / a > < / td >
2021-09-09 14:43:57 +02:00
< td align = "center" > < a href = "https://github.com/jiangty-addepar" > < img src = "https://avatars.githubusercontent.com/u/4613397?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Damien Jiang< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ajiangty-addepar" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/danberindei" > < img src = "https://avatars.githubusercontent.com/u/504907?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Dan Berindei< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Adanberindei" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/bhamail" > < img src = "https://avatars.githubusercontent.com/u/578919?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Dan Rollo< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Abhamail" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/zman0900" > < img src = "https://avatars.githubusercontent.com/u/428589?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Dan Ziemba< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Azman0900" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/danjee" > < img src = "https://avatars.githubusercontent.com/u/3084216?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Daniel Jipa< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Adanjee" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/DReigada" > < img src = "https://avatars.githubusercontent.com/u/11428771?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Daniel Reigada< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ADReigada" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "http://www.danilopianini.org/" > < img src = "https://avatars.githubusercontent.com/u/1991673?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Danilo Pianini< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ADanySK" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/dpalic" > < img src = "https://avatars.githubusercontent.com/u/1399203?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Darko< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Adpalic" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/djh82" > < img src = "https://avatars.githubusercontent.com/u/1810493?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > David< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Adjh82" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/dvdtknsn" > < img src = "https://avatars.githubusercontent.com/u/4223632?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > David Atkinson< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Advdtknsn" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/davidburstromspotify" > < img src = "https://avatars.githubusercontent.com/u/2573207?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > David Burström< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=davidburstromspotify" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Adavidburstromspotify" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/davidgoate" > < img src = "https://avatars.githubusercontent.com/u/8789912?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > David Goaté< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Adavidgoate" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "http://www.alternatecomputing.com/" > < img src = "https://avatars.githubusercontent.com/u/1809854?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > David Golpira< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Agolpira" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/dakov" > < img src = "https://avatars.githubusercontent.com/u/4954378?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > David Kovařík< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Adakov" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/davidmichaelkarr" > < img src = "https://avatars.githubusercontent.com/u/5566419?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > David M. Karr (fullname at gmail.com)< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Adavidmichaelkarr" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/DavidRenz" > < img src = "https://avatars.githubusercontent.com/u/8180433?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > David Renz< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=DavidRenz" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3ADavidRenz" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/David-Renz" > < img src = "https://avatars.githubusercontent.com/u/8180460?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > David Renz< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ADavid-Renz" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/ghost" > < img src = "https://avatars.githubusercontent.com/u/10137?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Deleted user< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aghost" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "http://www.ideaworks.co.uk/" > < img src = "https://avatars.githubusercontent.com/u/12861109?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Dell Green< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Adellgreen" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://centerkey.com/dem" > < img src = "https://avatars.githubusercontent.com/u/119555?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Dem Pilafian< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Adpilafian" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/denisZhe" > < img src = "https://avatars.githubusercontent.com/u/26335964?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Den< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AdenisZhe" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/borovikovd" > < img src = "https://avatars.githubusercontent.com/u/43751473?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Denis Borovikov< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=borovikovd" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aborovikovd" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/dreniers" > < img src = "https://avatars.githubusercontent.com/u/9007290?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Dennie Reniers< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=dreniers" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Adreniers" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "http://www.dekies.de/" > < img src = "https://avatars.githubusercontent.com/u/858827?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Dennis Kieselhorst< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Adeki" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/derekm" > < img src = "https://avatars.githubusercontent.com/u/379469?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Derek P. Moore< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aderekm" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/Dichotomia" > < img src = "https://avatars.githubusercontent.com/u/5593198?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Dichotomia< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ADichotomia" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/dionisioC" > < img src = "https://avatars.githubusercontent.com/u/8872359?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Dionisio Cortés Fernández< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=dionisioC" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3AdionisioC" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/dimas-b" > < img src = "https://avatars.githubusercontent.com/u/40603221?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Dmitri Bourlatchkov< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Adimas-b" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/dmitrykuzmin" > < img src = "https://avatars.githubusercontent.com/u/5636313?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Dmitriy Kuzmin< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Admitrykuzmin" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/ddashenkov" > < img src = "https://avatars.githubusercontent.com/u/17772311?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Dmytro Dashenkov< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Addashenkov" title = "Bug reports" > 🐛< / a > < / td >
2021-09-02 11:54:15 +02:00
< / tr >
< tr >
2021-09-09 14:43:57 +02:00
< td align = "center" > < a href = "https://github.com/chimpytt" > < img src = "https://avatars.githubusercontent.com/u/3532693?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Drew Hall< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Achimpytt" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/posto" > < img src = "https://avatars.githubusercontent.com/u/899189?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Dumitru Postoronca< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aposto" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/dkadams" > < img src = "https://avatars.githubusercontent.com/u/1144945?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Dylan Adams< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Adkadams" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/kuanrongdelvdou" > < img src = "https://avatars.githubusercontent.com/u/33919823?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Eden Hao< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Akuanrongdelvdou" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/Egor18" > < img src = "https://avatars.githubusercontent.com/u/32983915?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Egor Bredikhin< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AEgor18" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/epkugelmass" > < img src = "https://avatars.githubusercontent.com/u/6265378?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Elan P. Kugelmass< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aepkugelmass" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/eldereng" > < img src = "https://avatars.githubusercontent.com/u/8397171?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Elder S.< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aeldereng" title = "Bug reports" > 🐛< / a > < / td >
2021-08-20 16:16:31 +02:00
< / tr >
< tr >
2021-09-09 14:43:57 +02:00
< td align = "center" > < a href = "http://emilesonneveld.be/" > < img src = "https://avatars.githubusercontent.com/u/2298426?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Emile< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AEmileSonneveld" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "http://stackoverflow.com/users/2419922/cshu" > < img src = "https://avatars.githubusercontent.com/u/3754290?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Eric< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Acshu" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/cropredyHelix" > < img src = "https://avatars.githubusercontent.com/u/25649155?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Eric Kintzer< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AcropredyHelix" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://www.ericperrets.info/" > < img src = "https://avatars.githubusercontent.com/u/5377458?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Eric Perret< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aeperret" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/esquires" > < img src = "https://avatars.githubusercontent.com/u/9272110?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Eric Squires< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aesquires" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/erichlf" > < img src = "https://avatars.githubusercontent.com/u/1392578?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Erich L Foster< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aerichlf" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/erik4github" > < img src = "https://avatars.githubusercontent.com/u/28544995?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Erik Bleske< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aerik4github" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/Reissner" > < img src = "https://avatars.githubusercontent.com/u/5049888?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Ernst Reissner< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AReissner" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://fwdekker.com/" > < img src = "https://avatars.githubusercontent.com/u/13442533?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > F.W. Dekker< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AFWDekker" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/fciancio" > < img src = "https://avatars.githubusercontent.com/u/7189753?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Facundo< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Afciancio" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://www.linkedin.com/in/federicogiust/" > < img src = "https://avatars.githubusercontent.com/u/1804862?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Federico Giust< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Afedegiust" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/fsherstobitov" > < img src = "https://avatars.githubusercontent.com/u/1047478?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Fedor Sherstobitov< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Afsherstobitov" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/fblampe" > < img src = "https://avatars.githubusercontent.com/u/35843701?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Felix Lampe< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Afblampe" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/filipgolonka" > < img src = "https://avatars.githubusercontent.com/u/2419247?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Filip Golonka< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Afilipgolonka" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "http://www.filipesperandio.com/" > < img src = "https://avatars.githubusercontent.com/u/316873?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Filipe Esperandio< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=filipesperandio" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Afilipesperandio" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/fflatorre" > < img src = "https://avatars.githubusercontent.com/u/1547188?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Francesco la Torre< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Afflatorre" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/franciscodua" > < img src = "https://avatars.githubusercontent.com/u/6960449?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Francisco Duarte< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Afranciscodua" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/friederbluemle" > < img src = "https://avatars.githubusercontent.com/u/743291?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Frieder Bluemle< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Afriederbluemle" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "http://domui.org/" > < img src = "https://avatars.githubusercontent.com/u/1500452?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Frits Jalvingh< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=fjalvingh" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Afjalvingh" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/baziorek" > < img src = "https://avatars.githubusercontent.com/u/15332594?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > G. Bazior< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Abaziorek" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/ghenkes" > < img src = "https://avatars.githubusercontent.com/u/11396826?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Gabe Henkes< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aghenkes" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://www.linkedin.com/in/genoud6/" > < img src = "https://avatars.githubusercontent.com/u/10148667?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Genoud Magloire< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Agenoud" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/Geoffrey555" > < img src = "https://avatars.githubusercontent.com/u/41955002?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Geoffrey555< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AGeoffrey555" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/romge" > < img src = "https://avatars.githubusercontent.com/u/56720952?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Georg Romstorfer< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aromge" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/giorgimode" > < img src = "https://avatars.githubusercontent.com/u/13137407?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Gio< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Agiorgimode" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/171563857" > < img src = "https://avatars.githubusercontent.com/u/22027896?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Gol< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3A171563857" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/gibarsin" > < img src = "https://avatars.githubusercontent.com/u/9052089?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Gonzalo Exequiel Ibars Ingman< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=gibarsin" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Agibarsin" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/GooDer" > < img src = "https://avatars.githubusercontent.com/u/953850?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > GooDer< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AGooDer" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://gregorriegler.com/" > < img src = "https://avatars.githubusercontent.com/u/5053662?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Gregor Riegler< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Agregorriegler" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/golszewski86" > < img src = "https://avatars.githubusercontent.com/u/45224442?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Grzegorz Olszewski< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Agolszewski86" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/GuntherSchrijvers" > < img src = "https://avatars.githubusercontent.com/u/56870283?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Gunther Schrijvers< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=GuntherSchrijvers" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3AGuntherSchrijvers" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/gustavopcassol" > < img src = "https://avatars.githubusercontent.com/u/17629700?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Gustavo Krieger< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Agustavopcassol" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "http://www.inveniem.com/" > < img src = "https://avatars.githubusercontent.com/u/2631799?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Guy Elsmore-Paddock< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AGuyPaddock" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/RootG" > < img src = "https://avatars.githubusercontent.com/u/17679464?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Görkem Mülayim< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ARootG" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://hanzelgodinez.dev/" > < img src = "https://avatars.githubusercontent.com/u/14959862?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Hanzel Godinez< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ahgodinez89" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/harsh-kukreja" > < img src = "https://avatars.githubusercontent.com/u/40023562?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Harsh Kukreja< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aharsh-kukreja" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/aheber" > < img src = "https://avatars.githubusercontent.com/u/2173116?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Heber< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aaheber" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "http://about.me/hgschmie" > < img src = "https://avatars.githubusercontent.com/u/39495?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Henning Schmiedehausen< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=hgschmie" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ahgschmie" title = "Bug reports" > 🐛< / a > < / td >
2021-09-02 11:54:15 +02:00
< td align = "center" > < a href = "https://github.com/hvbargen" > < img src = "https://avatars.githubusercontent.com/u/37015738?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Henning von Bargen< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=hvbargen" title = "Code" > 💻< / a > < / td >
2021-09-09 14:43:57 +02:00
< td align = "center" > < a href = "http://people.apache.org/~hboutemy" > < img src = "https://avatars.githubusercontent.com/u/237462?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Hervé Boutemy< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ahboutemy" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/hpandeycodeit" > < img src = "https://avatars.githubusercontent.com/u/21266105?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Himanshu Pandey< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ahpandeycodeit" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/Hokwang" > < img src = "https://avatars.githubusercontent.com/u/1247030?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Hokwang Lee< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AHokwang" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
2021-09-02 11:54:15 +02:00
< td align = "center" > < a href = "https://github.com/hooperbloob" > < img src = "https://avatars.githubusercontent.com/u/1541370?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Hooperbloob< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=hooperbloob" title = "Code" > 💻< / a > < / td >
2021-09-09 14:43:57 +02:00
< td align = "center" > < a href = "https://github.com/pdhung3012" > < img src = "https://avatars.githubusercontent.com/u/5716541?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Hung PHAN< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Apdhung3012" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/IDoCodingStuffs" > < img src = "https://avatars.githubusercontent.com/u/43346404?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > IDoCodingStuffs< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=IDoCodingStuffs" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3AIDoCodingStuffs" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/iccengan" > < img src = "https://avatars.githubusercontent.com/u/10875468?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Iccen Gan< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aiccengan" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/itirabasso" > < img src = "https://avatars.githubusercontent.com/u/627816?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Ignacio Mariano Tirabasso< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aitirabasso" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/Myllyenko" > < img src = "https://avatars.githubusercontent.com/u/10358254?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Igor Melnichenko< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AMyllyenko" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/igormoreno" > < img src = "https://avatars.githubusercontent.com/u/229440?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Igor Moreno< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aigormoreno" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/Intelesis-MS" > < img src = "https://avatars.githubusercontent.com/u/16139113?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Intelesis-MS< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AIntelesis-MS" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/zyc-Iroha" > < img src = "https://avatars.githubusercontent.com/u/50617743?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Iroha_< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Azyc-Iroha" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/ishanSrt" > < img src = "https://avatars.githubusercontent.com/u/29859362?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Ishan Srivastava< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AishanSrt" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/iguerini" > < img src = "https://avatars.githubusercontent.com/u/5718273?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Ivano Guerini< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aiguerini" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/Springvar" > < img src = "https://avatars.githubusercontent.com/u/3775536?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Ivar Andreas Bonsaksen< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ASpringvar" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://www.linkedin.com/in/publicstaticvoidmain" > < img src = "https://avatars.githubusercontent.com/u/457542?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Ivo Šmíd< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Abedla" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/JJengility" > < img src = "https://avatars.githubusercontent.com/u/29776644?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > JJengility< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AJJengility" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/jakehemmerle" > < img src = "https://avatars.githubusercontent.com/u/8061957?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Jake Hemmerle< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ajakehemmerle" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/jjlharrison" > < img src = "https://avatars.githubusercontent.com/u/242337?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > James Harrison< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ajjlharrison" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/jgerken" > < img src = "https://avatars.githubusercontent.com/u/1132816?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Jan< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ajgerken" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://www.linkedin.com/in/janaertgeerts/" > < img src = "https://avatars.githubusercontent.com/u/2192516?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Jan Aertgeerts< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=JAertgeerts" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3AJAertgeerts" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/CrazyUnderdog" > < img src = "https://avatars.githubusercontent.com/u/23554953?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Jan Brümmer< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ACrazyUnderdog" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/triskaj" > < img src = "https://avatars.githubusercontent.com/u/21357785?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Jan Tříska< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Atriskaj" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://jlelse.dev/" > < img src = "https://avatars.githubusercontent.com/u/8822316?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Jan-Lukas Else< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ajlelse" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/jdwill" > < img src = "https://avatars.githubusercontent.com/u/7173290?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Jason Williams< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ajdwill" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/mayerj" > < img src = "https://avatars.githubusercontent.com/u/4032461?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Jean-Paul Mayer< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amayerj" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/jslaroch" > < img src = "https://avatars.githubusercontent.com/u/49211137?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Jean-Simon Larochelle< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ajslaroch" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/jbartolotta-sfdc" > < img src = "https://avatars.githubusercontent.com/u/18196574?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Jeff Bartolotta< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=jbartolotta-sfdc" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ajbartolotta-sfdc" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/jeffhube" > < img src = "https://avatars.githubusercontent.com/u/1283264?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Jeff Hube< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=jeffhube" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ajeffhube" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/jeffjensen" > < img src = "https://avatars.githubusercontent.com/u/63805?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Jeff Jensen< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ajeffjensen" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/JeffMTI" > < img src = "https://avatars.githubusercontent.com/u/8986912?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Jeff May< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AJeffMTI" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://dpa.com/" > < img src = "https://avatars.githubusercontent.com/u/30986864?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Jens Gerdes< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ajensgerdes" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/jborgers" > < img src = "https://avatars.githubusercontent.com/u/24591067?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Jeroen Borgers< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ajborgers" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/jerome-d-russ" > < img src = "https://avatars.githubusercontent.com/u/10404699?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Jerome Russ< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ajerome-d-russ" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/jiri-pejchal" > < img src = "https://avatars.githubusercontent.com/u/1450087?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Jiri Pejchal< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ajiri-pejchal" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/jithinqburst" > < img src = "https://avatars.githubusercontent.com/u/15030774?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Jithin Sunny< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ajithinqburst" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/JiriSko" > < img src = "https://avatars.githubusercontent.com/u/997061?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Jiří Škorpil< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AJiriSko" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/machadoit" > < img src = "https://avatars.githubusercontent.com/u/13315199?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Joao Machado< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amachadoit" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/kraussjo" > < img src = "https://avatars.githubusercontent.com/u/38663002?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Jochen Krauss< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Akraussjo" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "http://about.me/johanhammar/" > < img src = "https://avatars.githubusercontent.com/u/69011?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Johan Hammar< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ajohanhammar" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/john-karp" > < img src = "https://avatars.githubusercontent.com/u/6526886?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > John Karp< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ajohn-karp" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://au.linkedin.com/in/johnjiabinzhang" > < img src = "https://avatars.githubusercontent.com/u/3710709?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > John Zhang< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ajohn5f35" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/John-Teng" > < img src = "https://avatars.githubusercontent.com/u/16723151?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > John-Teng< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=John-Teng" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3AJohn-Teng" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://darakian.github.io/" > < img src = "https://avatars.githubusercontent.com/u/3607524?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Jon Moroney< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=darakian" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Adarakian" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/jonasgeiregat" > < img src = "https://avatars.githubusercontent.com/u/288105?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Jonas Geiregat< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ajonasgeiregat" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/jonathanwiesel" > < img src = "https://avatars.githubusercontent.com/u/1326781?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Jonathan Wiesel< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=jonathanwiesel" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ajonathanwiesel" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://nightfirec.at/" > < img src = "https://avatars.githubusercontent.com/u/2199511?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Jordan< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ANightfirecat" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/jordillachmrf" > < img src = "https://avatars.githubusercontent.com/u/33347279?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Jordi Llach< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ajordillachmrf" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://www.jorsol.com/" > < img src = "https://avatars.githubusercontent.com/u/3739977?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Jorge Solórzano< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ajorsol" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/JorneVL" > < img src = "https://avatars.githubusercontent.com/u/27012293?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > JorneVL< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AJorneVL" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/josepalafox" > < img src = "https://avatars.githubusercontent.com/u/1505000?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Jose Palafox< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ajosepalafox" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://oitsjustjose.com/" > < img src = "https://avatars.githubusercontent.com/u/3887324?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Jose Stovall< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aoitsjustjose" title = "Bug reports" > 🐛< / a > < / td >
2021-09-02 11:54:15 +02:00
< / tr >
< tr >
2021-09-02 11:14:26 +02:00
< td align = "center" > < a href = "https://www.linkedin.com/in/joseph-allen-9602671/" > < img src = "https://avatars.githubusercontent.com/u/3989748?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Joseph< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=JosephAllen" title = "Code" > 💻< / a > < / td >
2021-09-09 14:43:57 +02:00
< td align = "center" > < a href = "https://github.com/jogu" > < img src = "https://avatars.githubusercontent.com/u/316456?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Joseph Heenan< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ajogu" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/jfeingold35" > < img src = "https://avatars.githubusercontent.com/u/4054488?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Josh Feingold< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=jfeingold35" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ajfeingold35" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/holthauj" > < img src = "https://avatars.githubusercontent.com/u/2595766?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Josh Holthaus< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aholthauj" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/jarquile" > < img src = "https://avatars.githubusercontent.com/u/16008477?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Joshua S Arquilevich< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ajarquile" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/jtjeferreira" > < img src = "https://avatars.githubusercontent.com/u/943051?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > João Ferreira< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=jtjeferreira" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ajtjeferreira" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "http://joaoschmitt.wordpress.com/" > < img src = "https://avatars.githubusercontent.com/u/2640413?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > João Pedro Schmitt< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aschmittjoaopedro" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/jsotuyod" > < img src = "https://avatars.githubusercontent.com/u/802626?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Juan Martín Sotuyo Dodero< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=jsotuyod" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/commits?author=jsotuyod" title = "Documentation" > 📖< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ajsotuyod" title = "Bug reports" > 🐛< / a > < a href = "#maintenance-jsotuyod" title = "Maintenance" > 🚧< / a > < / td >
< td align = "center" > < a href = "https://twitter.com/elchampo" > < img src = "https://avatars.githubusercontent.com/u/202728?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Juan Pablo Civile< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Achampo" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/Rest0" > < img src = "https://avatars.githubusercontent.com/u/6252887?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Julian Voronetsky< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ARest0" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "http://julien.gunnm.org/" > < img src = "https://avatars.githubusercontent.com/u/993972?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Julien< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ajuli1" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/julius-d" > < img src = "https://avatars.githubusercontent.com/u/30121440?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Julius< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ajulius-d" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/JustPRV" > < img src = "https://avatars.githubusercontent.com/u/3972281?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > JustPRV< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AJustPRV" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "http://lilith.huxhorn.de/" > < img src = "https://avatars.githubusercontent.com/u/119647?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Jörn Huxhorn< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ahuxi" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/KThompso" > < img src = "https://avatars.githubusercontent.com/u/2643885?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > KThompso< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AKThompso" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/yippie" > < img src = "https://avatars.githubusercontent.com/u/2078328?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Kai Amundsen< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ayippie" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/anddero" > < img src = "https://avatars.githubusercontent.com/u/9193126?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Karl-Andero Mere< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aanddero" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/krichter722" > < img src = "https://avatars.githubusercontent.com/u/4369372?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Karl-Philipp Richter< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Akrichter722" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://betterprojectsfaster.com/" > < img src = "https://avatars.githubusercontent.com/u/1061209?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Karsten Silz< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aksilz" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://sil.hatenablog.com/" > < img src = "https://avatars.githubusercontent.com/u/9624059?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Kazuma Watanabe< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Awata727" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://siege.gg/" > < img src = "https://avatars.githubusercontent.com/u/28510368?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Kev< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AKevSlashNull" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/kevemueller" > < img src = "https://avatars.githubusercontent.com/u/15782588?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Keve Müller< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Akevemueller" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/nawforce" > < img src = "https://avatars.githubusercontent.com/u/25647167?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Kevin Jones< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Anawforce" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "http://www.cs.princeton.edu/~wayne" > < img src = "https://avatars.githubusercontent.com/u/5225666?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Kevin Wayne< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Akevin-wayne" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/kieranlblack" > < img src = "https://avatars.githubusercontent.com/u/48463323?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Kieran Black< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Akieranlblack" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/KirillZubov" > < img src = "https://avatars.githubusercontent.com/u/12683885?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Kirill Zubov< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AKirillZubov" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/clem0110" > < img src = "https://avatars.githubusercontent.com/u/7726426?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Kirk Clemens< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=clem0110" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aclem0110" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/carhartl" > < img src = "https://avatars.githubusercontent.com/u/21918?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Klaus Hartl< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Acarhartl" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/vanlooverenkoen" > < img src = "https://avatars.githubusercontent.com/u/21172855?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Koen Van Looveren< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Avanlooverenkoen" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/kris-scheibe" > < img src = "https://avatars.githubusercontent.com/u/20039785?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Kris Scheibe< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=kris-scheibe" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Akris-scheibe" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/kthanky" > < img src = "https://avatars.githubusercontent.com/u/13259828?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Kunal Thanki< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Akthanky" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://www.linkedin.com/in/larry-diamond-3964042/" > < img src = "https://avatars.githubusercontent.com/u/1066589?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Larry Diamond< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=larrydiamond" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Alarrydiamond" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://lars-sh.de/" > < img src = "https://avatars.githubusercontent.com/u/880198?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Lars Knickrehm< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Alars-sh" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/lgabrielgr" > < img src = "https://avatars.githubusercontent.com/u/760959?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Leo Gutierrez< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Algabrielgr" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/Lintsi" > < img src = "https://avatars.githubusercontent.com/u/6848650?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Lintsi< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ALintsi" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://linusfernandes.com/" > < img src = "https://avatars.githubusercontent.com/u/24714685?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Linus Fernandes< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AFernal73" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/LixonLookose" > < img src = "https://avatars.githubusercontent.com/u/66419481?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Lixon Lookose< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ALixonLookose" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/logesh14" > < img src = "https://avatars.githubusercontent.com/u/30902439?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Logesh< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Alogesh14" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/lolgab" > < img src = "https://avatars.githubusercontent.com/u/5793054?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Lorenzo Gabriele< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Alolgab" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/ledoyen" > < img src = "https://avatars.githubusercontent.com/u/6298315?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Loïc Ledoyen< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aledoyen" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/lssilva" > < img src = "https://avatars.githubusercontent.com/u/7464888?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Lucas Silva< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Alssilva" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/lsoncini" > < img src = "https://avatars.githubusercontent.com/u/12226579?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Lucas Soncini< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=lsoncini" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Alsoncini" title = "Bug reports" > 🐛< / a > < / td >
2021-09-02 11:54:15 +02:00
< / tr >
< tr >
2021-09-09 14:43:57 +02:00
< td align = "center" > < a href = "https://github.com/lslonina" > < img src = "https://avatars.githubusercontent.com/u/12303865?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Lukasz Slonina< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Alslonina" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/Lukebray" > < img src = "https://avatars.githubusercontent.com/u/39488446?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Lukebray< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ALukebray" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/lgoldstein" > < img src = "https://avatars.githubusercontent.com/u/1436205?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Lyor Goldstein< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Algoldstein" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://mcmics.jnet24.de/" > < img src = "https://avatars.githubusercontent.com/u/4604206?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > MCMicS< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AMCMicS" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/Macarse" > < img src = "https://avatars.githubusercontent.com/u/24915?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Macarse< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AMacarse" title = "Bug reports" > 🐛< / a > < / td >
2021-09-02 11:54:15 +02:00
< td align = "center" > < a href = "https://pmd.github.io/" > < img src = "https://avatars.githubusercontent.com/u/26070915?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Machine account for PMD< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=pmd-bot" title = "Code" > 💻< / a > < / td >
2021-09-09 14:43:57 +02:00
< td align = "center" > < a href = "https://github.com/msiemczyk" > < img src = "https://avatars.githubusercontent.com/u/5693250?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Maciek Siemczyk< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amsiemczyk" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/maikelsteneker" > < img src = "https://avatars.githubusercontent.com/u/2788927?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Maikel Steneker< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=maikelsteneker" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amaikelsteneker" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/maksim-m" > < img src = "https://avatars.githubusercontent.com/u/1863269?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Maksim Moiseikin< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amaksim-m" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/koma0277" > < img src = "https://avatars.githubusercontent.com/u/35556790?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Manfred Koch< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Akoma0277" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://www.linkedin.com/in/manuel-moya-ferrer-11163168/" > < img src = "https://avatars.githubusercontent.com/u/15876612?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Manuel Moya Ferrer< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=mmoyaferrer" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ammoyaferrer" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/mryan43" > < img src = "https://avatars.githubusercontent.com/u/223869?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Manuel Ryan< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amryan43" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/touzoku" > < img src = "https://avatars.githubusercontent.com/u/1285662?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Marat Vyshegorodtsev< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Atouzoku" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/marcelhaerle" > < img src = "https://avatars.githubusercontent.com/u/5338817?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Marcel Härle< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amarcelhaerle" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/marcello-fialho" > < img src = "https://avatars.githubusercontent.com/u/28719666?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Marcello Fialho< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amarcello-fialho" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://lidel.org/" > < img src = "https://avatars.githubusercontent.com/u/157609?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Marcin Rataj< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Alidel" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/adamcin" > < img src = "https://avatars.githubusercontent.com/u/524972?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Mark Adamcin< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aadamcin" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/markhall82" > < img src = "https://avatars.githubusercontent.com/u/22261511?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Mark Hall< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=markhall82" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amarkhall82" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://mark.koli.ch/" > < img src = "https://avatars.githubusercontent.com/u/1202420?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Mark Kolich< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amarkkolich" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/markpritchard" > < img src = "https://avatars.githubusercontent.com/u/8234070?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Mark Pritchard< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amarkpritchard" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/maggu2810" > < img src = "https://avatars.githubusercontent.com/u/204670?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Markus Rathgeb< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amaggu2810" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "http://marquiswang.com/" > < img src = "https://avatars.githubusercontent.com/u/358220?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Marquis Wang< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amarquiswang" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/martofeld" > < img src = "https://avatars.githubusercontent.com/u/5756343?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Martin Feldsztejn< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amartofeld" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "http://twitter.com/theneva" > < img src = "https://avatars.githubusercontent.com/u/1404650?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Martin Lehmann< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Atheneva" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "http://www.spamer.me.uk/" > < img src = "https://avatars.githubusercontent.com/u/2852862?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Martin Spamer< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AMartin-Spamer" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/martin-tarjanyi" > < img src = "https://avatars.githubusercontent.com/u/17810336?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Martin Tarjányi< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amartin-tarjanyi" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/MatFl" > < img src = "https://avatars.githubusercontent.com/u/8408624?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > MatFl< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AMatFl" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/mateusz-stefanski" > < img src = "https://avatars.githubusercontent.com/u/28163508?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Mateusz Stefanski< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amateusz-stefanski" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/mathieugouin" > < img src = "https://avatars.githubusercontent.com/u/11562302?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Mathieu Gouin< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amathieugouin" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/MatiasComercio" > < img src = "https://avatars.githubusercontent.com/u/9677633?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > MatiasComercio< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=MatiasComercio" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3AMatiasComercio" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/mbenson" > < img src = "https://avatars.githubusercontent.com/u/487462?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Matt Benson< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ambenson" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/MPoorter" > < img src = "https://avatars.githubusercontent.com/u/25356097?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Matt De Poorter< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AMPoorter" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/frizbog" > < img src = "https://avatars.githubusercontent.com/u/2901857?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Matt Harrah< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Afrizbog" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/mattnelson" > < img src = "https://avatars.githubusercontent.com/u/1894657?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Matt Nelson< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amattnelson" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/blackmamo" > < img src = "https://avatars.githubusercontent.com/u/35695811?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Matthew Amos< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ablackmamo" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/mduggan" > < img src = "https://avatars.githubusercontent.com/u/3765590?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Matthew Duggan< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amduggan" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/qualidafial" > < img src = "https://avatars.githubusercontent.com/u/38629?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Matthew Hall< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aqualidafial" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/matifraga" > < img src = "https://avatars.githubusercontent.com/u/7543268?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Matías Fraga< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=matifraga" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amatifraga" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/marob" > < img src = "https://avatars.githubusercontent.com/u/3486231?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Maxime Robert< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=marob" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amarob" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://boyl.es/" > < img src = "https://avatars.githubusercontent.com/u/17732072?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Michael< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amichaelboyles" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/mikebell90" > < img src = "https://avatars.githubusercontent.com/u/780301?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Michael Bell< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amikebell90" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "http://reifyworks.com/" > < img src = "https://avatars.githubusercontent.com/u/2878?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Michael Bernstein< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amrb" title = "Bug reports" > 🐛< / a > < / td >
2021-08-20 16:16:31 +02:00
< / tr >
< tr >
2021-09-09 14:43:57 +02:00
< td align = "center" > < a href = "https://github.com/mclay" > < img src = "https://avatars.githubusercontent.com/u/393727?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Michael Clay< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amclay" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://mikedombrowski.com/" > < img src = "https://avatars.githubusercontent.com/u/3926405?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Michael Dombrowski< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AMikeDombo" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/TheRealHaui" > < img src = "https://avatars.githubusercontent.com/u/6312834?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Michael Hausegger< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ATheRealHaui" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/michaelhoefer" > < img src = "https://avatars.githubusercontent.com/u/479449?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Michael Hoefer< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amichaelhoefer" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "http://www.rrsoftware.de/" > < img src = "https://avatars.githubusercontent.com/u/1881640?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Michael Möbius< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ARocketRider" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://mnlipp.github.io/" > < img src = "https://avatars.githubusercontent.com/u/1446020?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Michael N. Lipp< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amnlipp" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/mpellegrini" > < img src = "https://avatars.githubusercontent.com/u/466696?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Michael Pellegrini< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ampellegrini" title = "Bug reports" > 🐛< / a > < / td >
2021-09-02 11:54:15 +02:00
< / tr >
< tr >
2021-09-09 14:43:57 +02:00
< td align = "center" > < a href = "http://pl.linkedin.com/in/mkordas/" > < img src = "https://avatars.githubusercontent.com/u/5467276?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Michal Kordas< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amkordas" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "http://www.greenpath.pl/" > < img src = "https://avatars.githubusercontent.com/u/986194?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Michał Borek< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amichalborek" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/coola" > < img src = "https://avatars.githubusercontent.com/u/83182?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Michał Kuliński< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Acoola" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://mnunezdm.com/" > < img src = "https://avatars.githubusercontent.com/u/10410852?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Miguel Núñez Díaz-Montes< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amnunezdm" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/impmihai" > < img src = "https://avatars.githubusercontent.com/u/22995337?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Mihai Ionut< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aimpmihai" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/mhankus" > < img src = "https://avatars.githubusercontent.com/u/6095361?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Mirek Hankus< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amhankus" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/ImmortalPawn" > < img src = "https://avatars.githubusercontent.com/u/30688679?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Mladjan Gadzic< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AImmortalPawn" title = "Bug reports" > 🐛< / a > < / td >
2021-09-02 11:54:15 +02:00
< / tr >
< tr >
2021-09-09 14:43:57 +02:00
< td align = "center" > < a href = "https://github.com/MrAngry52" > < img src = "https://avatars.githubusercontent.com/u/30026386?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > MrAngry52< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AMrAngry52" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/muminc" > < img src = "https://avatars.githubusercontent.com/u/934067?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Muminur Choudhury< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amuminc" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/Drofff" > < img src = "https://avatars.githubusercontent.com/u/45700628?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Mykhailo Palahuta< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=Drofff" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3ADrofff" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/Nagendra080389" > < img src = "https://avatars.githubusercontent.com/u/6088582?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Nagendra Kumar Singh< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ANagendra080389" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "http://bit.ly/nahuelbarrios" > < img src = "https://avatars.githubusercontent.com/u/196234?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Nahuel Barrios< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Abarriosnahuel" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/nbraun-Google" > < img src = "https://avatars.githubusercontent.com/u/52723353?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Nathan Braun< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Anbraun-Google" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/nathanspectacular" > < img src = "https://avatars.githubusercontent.com/u/88563519?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Nathan Reynolds< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Anathanspectacular" title = "Bug reports" > 🐛< / a > < / td >
2021-09-02 11:54:15 +02:00
< / tr >
< tr >
2021-09-09 14:43:57 +02:00
< td align = "center" > < a href = "https://github.com/numeralnathan" > < img src = "https://avatars.githubusercontent.com/u/1236594?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Nathan Reynolds< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Anumeralnathan" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://mastodon.tetaneutral.net/@roipoussiere" > < img src = "https://avatars.githubusercontent.com/u/1665542?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Nathanaël< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aroipoussiere" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/Nazdravi" > < img src = "https://avatars.githubusercontent.com/u/273093?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Nazdravi< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ANazdravi" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/Neha-Dhonde" > < img src = "https://avatars.githubusercontent.com/u/31505059?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Neha-Dhonde< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ANeha-Dhonde" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/njdoyle" > < img src = "https://avatars.githubusercontent.com/u/316852?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Nicholas Doyle< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Anjdoyle" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/NickButcher1" > < img src = "https://avatars.githubusercontent.com/u/8671565?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Nick Butcher< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ANickButcher1" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/nicoabie" > < img src = "https://avatars.githubusercontent.com/u/2797992?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Nico Gallinal< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Anicoabie" title = "Bug reports" > 🐛< / a > < / td >
2021-09-02 11:54:15 +02:00
< / tr >
< tr >
2021-09-09 14:43:57 +02:00
< td align = "center" > < a href = "https://github.com/niktekusho" > < img src = "https://avatars.githubusercontent.com/u/18280135?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Nicola Dal Maso< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aniktekusho" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://www.salesforcecraft.dev/" > < img src = "https://avatars.githubusercontent.com/u/8916229?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Nikita Chursin< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Anchursin" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "http://vanniktech.com/" > < img src = "https://avatars.githubusercontent.com/u/5759366?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Niklas Baudy< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Avanniktech" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/havrikov" > < img src = "https://avatars.githubusercontent.com/u/29175267?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Nikolas Havrikov< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ahavrikov" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://nileshvirkar.github.io/" > < img src = "https://avatars.githubusercontent.com/u/24671786?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Nilesh Virkar< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ANileshVirkar" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/nimit-patel" > < img src = "https://avatars.githubusercontent.com/u/13987001?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Nimit Patel< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Animit-patel" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/niranjanh" > < img src = "https://avatars.githubusercontent.com/u/23009945?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Niranjan Harpale< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aniranjanh" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/noahsussman" > < img src = "https://avatars.githubusercontent.com/u/31490710?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Noah Sussman< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Anoahsussman" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/Noah0120" > < img src = "https://avatars.githubusercontent.com/u/86766856?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Noah0120< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ANoah0120" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://noamtamim.com/" > < img src = "https://avatars.githubusercontent.com/u/10047237?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Noam Tamim< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Anoamtamim" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/grandinj" > < img src = "https://avatars.githubusercontent.com/u/796121?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Noel Grandin< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Agrandinj" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/OlafHaalstra" > < img src = "https://avatars.githubusercontent.com/u/6420723?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Olaf Haalstra< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AOlafHaalstra" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/Oleg-Pavlenko-EPAM" > < img src = "https://avatars.githubusercontent.com/u/82513963?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Oleg Pavlenko< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AOleg-Pavlenko-EPAM" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "http://www.eikemeier.com/" > < img src = "https://avatars.githubusercontent.com/u/604196?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Oliver Eikemeier< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aeikemeier" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/pyxide" > < img src = "https://avatars.githubusercontent.com/u/9992381?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Olivier Parent< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=pyxide" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Apyxide" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/ollieabbey" > < img src = "https://avatars.githubusercontent.com/u/52665918?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Ollie Abbey< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=ollieabbey" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aollieabbey" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/OverDrone" > < img src = "https://avatars.githubusercontent.com/u/8506029?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > OverDrone< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AOverDrone" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/ozangulle" > < img src = "https://avatars.githubusercontent.com/u/1334150?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Ozan Gulle< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=ozangulle" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aozangulle" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/PJ17101" > < img src = "https://avatars.githubusercontent.com/u/31703044?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > PUNEET JAIN< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3APJ17101" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/parbatiSF" > < img src = "https://avatars.githubusercontent.com/u/37078591?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Parbati Bose< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AparbatiSF" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/paulberg" > < img src = "https://avatars.githubusercontent.com/u/3239883?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Paul Berg< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Apaulberg" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/pbludov" > < img src = "https://avatars.githubusercontent.com/u/900805?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Pavel Bludov< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Apbludov" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/malejpavouk" > < img src = "https://avatars.githubusercontent.com/u/4127023?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Pavel Mička< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amalejpavouk" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/pnsantos" > < img src = "https://avatars.githubusercontent.com/u/630567?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Pedro Nuno Santos< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Apnsantos" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "http://pedrorijo.com/" > < img src = "https://avatars.githubusercontent.com/u/1999050?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Pedro Rijo< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Apedrorijo91" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "http://belaran.eu/wordpress/" > < img src = "https://avatars.githubusercontent.com/u/117836?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Pelisse Romain< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=rpelisse" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/commits?author=rpelisse" title = "Documentation" > 📖< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Arpelisse" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/MisterSquishy" > < img src = "https://avatars.githubusercontent.com/u/5599894?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Pete Davids< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AMisterSquishy" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://blog.bruin.sg/" > < img src = "https://avatars.githubusercontent.com/u/4156901?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Peter Bruin< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Auncletall" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/pchittum" > < img src = "https://avatars.githubusercontent.com/u/1127876?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Peter Chittum< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=pchittum" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Apchittum" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/petercudmore" > < img src = "https://avatars.githubusercontent.com/u/12710815?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Peter Cudmore< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Apetercudmore" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/pkasson" > < img src = "https://avatars.githubusercontent.com/u/3072247?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Peter Kasson< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Apkasson" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://www.code-cop.org/" > < img src = "https://avatars.githubusercontent.com/u/830028?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Peter Kofler< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Acodecop" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/gpbp" > < img src = "https://avatars.githubusercontent.com/u/18648177?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Pham Hai Trung< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Agpbp" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/acanda" > < img src = "https://avatars.githubusercontent.com/u/174978?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Philip Graf< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=acanda" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aacanda" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/krallus" > < img src = "https://avatars.githubusercontent.com/u/29927450?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Philip Hachey< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Akrallus" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://pozil.github.io/" > < img src = "https://avatars.githubusercontent.com/u/5071767?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Philippe Ozil< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Apozil" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/phinehasz" > < img src = "https://avatars.githubusercontent.com/u/36982629?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Phinehas Artemix< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aphinehasz" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/fluxroot" > < img src = "https://avatars.githubusercontent.com/u/247365?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Phokham Nonava< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Afluxroot" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/szyman23" > < img src = "https://avatars.githubusercontent.com/u/4140681?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Piotr Szymański< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aszyman23" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/pzygielo" > < img src = "https://avatars.githubusercontent.com/u/11896137?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Piotrek Żygieło< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=pzygielo" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Apzygielo" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://twitter.com/pranayjaiswal" > < img src = "https://avatars.githubusercontent.com/u/1728493?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Pranay Jaiswal< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Apranayjswl007" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/kamath-prasad" > < img src = "https://avatars.githubusercontent.com/u/28445395?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Prasad Kamath< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Akamath-prasad" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/Prasanna-Loga" > < img src = "https://avatars.githubusercontent.com/u/36530081?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Prasanna< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3APrasanna-Loga" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/Presh-AR" > < img src = "https://avatars.githubusercontent.com/u/20354066?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Presh-AR< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3APresh-AR" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/Puneet1726" > < img src = "https://avatars.githubusercontent.com/u/26565880?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Puneet1726< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3APuneet1726" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/mrfyda" > < img src = "https://avatars.githubusercontent.com/u/593860?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Rafael Cortês< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amrfyda" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/RaheemShaik999" > < img src = "https://avatars.githubusercontent.com/u/43146735?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > RaheemShaik999< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ARaheemShaik999" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/rajeshggwp" > < img src = "https://avatars.githubusercontent.com/u/8025160?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > RajeshR< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=rajeshggwp" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Arajeshggwp" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/ramachandra-mohan" > < img src = "https://avatars.githubusercontent.com/u/22360770?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Ramachandra Mohan< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aramachandra-mohan" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "http://www.walkmod.com/" > < img src = "https://avatars.githubusercontent.com/u/1483433?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Raquel Pau< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Arpau" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "http://ravikiranj.net/" > < img src = "https://avatars.githubusercontent.com/u/389491?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Ravikiran Janardhana< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aravikiranj" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://twitter.com/reda_benh" > < img src = "https://avatars.githubusercontent.com/u/1609466?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Reda Benhemmouche< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ARedaBenh" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://dogeforce.com/" > < img src = "https://avatars.githubusercontent.com/u/6956403?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Renato Oliveira< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=renatoliveira" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Arenatoliveira" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/rdicroce" > < img src = "https://avatars.githubusercontent.com/u/1458922?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Rich DiCroce< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ardicroce" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://developer.riotgames.com/" > < img src = "https://avatars.githubusercontent.com/u/33143437?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Riot R1cket< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ARiotR1cket" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "http://rishjain.me/" > < img src = "https://avatars.githubusercontent.com/u/25207823?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Rishabh Jain< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ajainrish" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/rishabhdeepsingh" > < img src = "https://avatars.githubusercontent.com/u/28526643?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > RishabhDeep Singh< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Arishabhdeepsingh" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/rmartinus" > < img src = "https://avatars.githubusercontent.com/u/12573669?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Robbie Martinus< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=rmartinus" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Armartinus" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/RobertHenry6bev" > < img src = "https://avatars.githubusercontent.com/u/4371939?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Robert Henry< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ARobertHenry6bev" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/robertpainsi" > < img src = "https://avatars.githubusercontent.com/u/1794599?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Robert Painsi< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Arobertpainsi" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/Sebanisu" > < img src = "https://avatars.githubusercontent.com/u/1035905?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Robert Russell< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ASebanisu" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/rsoesemann" > < img src = "https://avatars.githubusercontent.com/u/8180281?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Robert Sösemann< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=rsoesemann" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/commits?author=rsoesemann" title = "Documentation" > 📖< / a > < a href = "#talk-rsoesemann" title = "Talks" > 📢< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Arsoesemann" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/robertwhitebit" > < img src = "https://avatars.githubusercontent.com/u/11049034?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Robert Whitebit< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Arobertwhitebit" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://androbin.de/" > < img src = "https://avatars.githubusercontent.com/u/16437156?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Robin Richtsfeld< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AAndrobin" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://www.whatsthistimestamp.com/" > < img src = "https://avatars.githubusercontent.com/u/16778?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Robin Stocker< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=robinst" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Arobinst" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://www.robinwils.com/" > < img src = "https://avatars.githubusercontent.com/u/5617025?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Robin Wils< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ARobin-Wils" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/RochusOest" > < img src = "https://avatars.githubusercontent.com/u/65393072?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > RochusOest< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ARochusOest" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/rodolfonoviski" > < img src = "https://avatars.githubusercontent.com/u/7316374?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Rodolfo Noviski< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Arodolfonoviski" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/Casara" > < img src = "https://avatars.githubusercontent.com/u/2224686?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Rodrigo Casara< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ACasara" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://rtfpessoa.xyz/" > < img src = "https://avatars.githubusercontent.com/u/902384?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Rodrigo Fernandes< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Artfpessoa" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/rsalvador" > < img src = "https://avatars.githubusercontent.com/u/1301827?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Roman Salvador< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=rsalvador" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Arsalvador" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "http://www.rblasch.org/" > < img src = "https://avatars.githubusercontent.com/u/52590?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Ronald Blaschke< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Arblasch" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/TWiStErRob" > < img src = "https://avatars.githubusercontent.com/u/2906988?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Róbert Papp< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ATWiStErRob" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://saikat.hashnode.dev/" > < img src = "https://avatars.githubusercontent.com/u/41847480?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Saikat Sengupta< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3As4ik4t" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://miplodder.github.io/" > < img src = "https://avatars.githubusercontent.com/u/22195621?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Saksham Handu< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AmiPlodder" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/Saladoc" > < img src = "https://avatars.githubusercontent.com/u/36816545?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Saladoc< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ASaladoc" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/SalesforceBobLightning" > < img src = "https://avatars.githubusercontent.com/u/39457343?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Salesforce Bob Lightning< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ASalesforceBobLightning" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/SamCarlberg" > < img src = "https://avatars.githubusercontent.com/u/6320992?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Sam Carlberg< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ASamCarlberg" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "http://d.hatena.ne.jp/megascus/" > < img src = "https://avatars.githubusercontent.com/u/976085?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Satoshi Kubo< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amegascus" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/scottkennedy" > < img src = "https://avatars.githubusercontent.com/u/881690?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Scott Kennedy< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ascottkennedy" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/SCWells72" > < img src = "https://avatars.githubusercontent.com/u/7671043?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Scott Wells< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ASCWells72" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/TheBoegl" > < img src = "https://avatars.githubusercontent.com/u/1990469?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Sebastian Bögl< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ATheBoegl" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/sschuberth" > < img src = "https://avatars.githubusercontent.com/u/349154?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Sebastian Schuberth< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Asschuberth" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/itsmebasti" > < img src = "https://avatars.githubusercontent.com/u/12232063?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Sebastian Schwarz< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aitsmebasti" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/sgorbaty" > < img src = "https://avatars.githubusercontent.com/u/407097?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Sergey Gorbaty< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Asgorbaty" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "http://skozlov.net/" > < img src = "https://avatars.githubusercontent.com/u/3817455?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Sergey Kozlov< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Askozlov" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/xuthus" > < img src = "https://avatars.githubusercontent.com/u/6282044?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Sergey Yanzin< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=xuthus" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Axuthus" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/prophet1906" > < img src = "https://avatars.githubusercontent.com/u/32415088?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Shubham< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=prophet1906" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aprophet1906" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/MessShawn" > < img src = "https://avatars.githubusercontent.com/u/3095801?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Simon Xiao< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AMessShawn" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/Srini1993" > < img src = "https://avatars.githubusercontent.com/u/24495100?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Srinivasan Venkatachalam< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ASrini1993" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/kullfar" > < img src = "https://avatars.githubusercontent.com/u/736714?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Stanislav Gromov< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Akullfar" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://www.stefan-birkner.de/" > < img src = "https://avatars.githubusercontent.com/u/711349?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Stefan Birkner< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Astefanbirkner" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/bohni" > < img src = "https://avatars.githubusercontent.com/u/1252254?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Stefan Bohn< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Abohni" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/xylo" > < img src = "https://avatars.githubusercontent.com/u/577869?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Stefan Endrullis< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Axylo" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/kloessst" > < img src = "https://avatars.githubusercontent.com/u/16407766?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Stefan Klöss-Schuster< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Akloessst" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/wolfs" > < img src = "https://avatars.githubusercontent.com/u/423186?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Stefan Wolf< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Awolfs" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://wissel.net/" > < img src = "https://avatars.githubusercontent.com/u/542549?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Stephan H. Wissel< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AStwissel" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "http://www.stephengroat.com/" > < img src = "https://avatars.githubusercontent.com/u/1159138?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Stephen< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Astephengroat" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/eekboom" > < img src = "https://avatars.githubusercontent.com/u/717179?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Stephen Friedrich< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aeekboom" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/stefanoportelli" > < img src = "https://avatars.githubusercontent.com/u/26385026?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Stexxe< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Astefanoportelli" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/stianlagstad" > < img src = "https://avatars.githubusercontent.com/u/4340859?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Stian Lågstad< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Astianlagstad" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/StuartClayton5" > < img src = "https://avatars.githubusercontent.com/u/3109872?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > StuartClayton5< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AStuartClayton5" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/SupunArunoda" > < img src = "https://avatars.githubusercontent.com/u/12041588?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Supun Arunoda< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ASupunArunoda" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/suren39" > < img src = "https://avatars.githubusercontent.com/u/2401754?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Suren Abrahamyan< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Asuren39" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/SwatiBGupta1110" > < img src = "https://avatars.githubusercontent.com/u/89257671?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > SwatiBGupta1110< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ASwatiBGupta1110" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/SyedThoufich" > < img src = "https://avatars.githubusercontent.com/u/58038531?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > SyedThoufich< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ASyedThoufich" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/szymex" > < img src = "https://avatars.githubusercontent.com/u/2721874?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Szymon Sasin< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aszymex" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/T-chuangxin" > < img src = "https://avatars.githubusercontent.com/u/28993085?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > T-chuangxin< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AT-chuangxin" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://ateraimemo.com/" > < img src = "https://avatars.githubusercontent.com/u/2842060?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > TERAI Atsuhiro< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aaterai" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "http://www.tiobe.com/" > < img src = "https://avatars.githubusercontent.com/u/2196103?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > TIOBE Software< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=tiobe" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Atiobe" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/tsmock" > < img src = "https://avatars.githubusercontent.com/u/45215054?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Taylor Smock< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Atsmock" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/DTecheira" > < img src = "https://avatars.githubusercontent.com/u/1074288?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Techeira Damián< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=DTecheira" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3ADTecheira" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "http://www.dreamops.org/" > < img src = "https://avatars.githubusercontent.com/u/1641984?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Ted Husted< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ATedHusted" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/TehBakker" > < img src = "https://avatars.githubusercontent.com/u/7705294?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > TehBakker< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ATehBakker" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://gitter.im/" > < img src = "https://avatars.githubusercontent.com/u/8518239?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > The Gitter Badger< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Agitter-badger" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/theodoor" > < img src = "https://avatars.githubusercontent.com/u/1332244?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Theodoor< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Atheodoor" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/Thihup" > < img src = "https://avatars.githubusercontent.com/u/13357965?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Thiago Henrique Hüpner< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AThihup" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/thibaultmeyer" > < img src = "https://avatars.githubusercontent.com/u/1005086?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Thibault Meyer< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Athibaultmeyer" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "http://www.thomas-guettler.de/" > < img src = "https://avatars.githubusercontent.com/u/414336?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Thomas Güttler< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aguettli" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/tjoneslo" > < img src = "https://avatars.githubusercontent.com/u/1969458?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Thomas Jones-Low< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Atjoneslo" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/Snap252" > < img src = "https://avatars.githubusercontent.com/u/10380619?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Thomas Smith< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=Snap252" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3ASnap252" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/ThrawnCA" > < img src = "https://avatars.githubusercontent.com/u/3080440?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > ThrawnCA< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AThrawnCA" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/Thunderforge" > < img src = "https://avatars.githubusercontent.com/u/6200170?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Thunderforge< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=Thunderforge" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3AThunderforge" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/TimvdLippe" > < img src = "https://avatars.githubusercontent.com/u/5948271?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Tim van der Lippe< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ATimvdLippe" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://miranda-ng.org/" > < img src = "https://avatars.githubusercontent.com/u/2698843?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Tobias Weimer< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=tweimer" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Atweimer" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://tdaly.co.uk/" > < img src = "https://avatars.githubusercontent.com/u/2606341?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Tom Daly< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Atomdaly" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/TomerFi" > < img src = "https://avatars.githubusercontent.com/u/28388442?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Tomer Figenblat< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ATomerFi" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/tomidelucca" > < img src = "https://avatars.githubusercontent.com/u/1288160?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Tomi De Lucca< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=tomidelucca" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Atomidelucca" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/tkleiber" > < img src = "https://avatars.githubusercontent.com/u/2185441?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Torsten Kleiber< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Atkleiber" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/TrackerSB" > < img src = "https://avatars.githubusercontent.com/u/6358523?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > TrackerSB< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ATrackerSB" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "http://www.cs.hm.edu/die_fakultaet/ansprechpartner/professoren/hafner/index.de.html" > < img src = "https://avatars.githubusercontent.com/u/503338?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Ullrich Hafner< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Auhafner" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/utkuc" > < img src = "https://avatars.githubusercontent.com/u/15714598?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Utku Cuhadaroglu< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=utkuc" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Autkuc" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://www.vbrandl.net/" > < img src = "https://avatars.githubusercontent.com/u/20639051?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Valentin Brandl< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Avbrandl" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/Nimfadora" > < img src = "https://avatars.githubusercontent.com/u/10544767?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Valeria< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3ANimfadora" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/anisimov-reveal" > < img src = "https://avatars.githubusercontent.com/u/69147166?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Vasily Anisimov< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aanisimov-reveal" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/vickenty" > < img src = "https://avatars.githubusercontent.com/u/914873?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Vickenty Fesunov< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Avickenty" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "http://www.irit.fr/~Victor.Noel/" > < img src = "https://avatars.githubusercontent.com/u/160975?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Victor Noël< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Avictornoel" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/vhuynh4thalesgroup" > < img src = "https://avatars.githubusercontent.com/u/50705525?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Vincent HUYNH< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Avhuynh4thalesgroup" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/vmaurin" > < img src = "https://avatars.githubusercontent.com/u/17569830?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Vincent Maurin< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Avmaurin" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/don-vip" > < img src = "https://avatars.githubusercontent.com/u/596867?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Vincent Privat< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Adon-vip" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/Vishhwas" > < img src = "https://avatars.githubusercontent.com/u/44495700?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Vishhwas< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AVishhwas" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/vitarb" > < img src = "https://avatars.githubusercontent.com/u/1311694?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Vitaly< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Avitarb" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "http://www.topixoft.com/" > < img src = "https://avatars.githubusercontent.com/u/275446?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Vitaly Polonetsky< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amvitaly" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/vojtapol" > < img src = "https://avatars.githubusercontent.com/u/7419355?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Vojtech Polivka< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Avojtapol" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/vszholobov" > < img src = "https://avatars.githubusercontent.com/u/73242083?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Vsevolod Zholobov< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Avszholobov" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://wsdjeg.spacevim.org/" > < img src = "https://avatars.githubusercontent.com/u/13142418?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Wang Shidong< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Awsdjeg" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/uberbinge" > < img src = "https://avatars.githubusercontent.com/u/1692495?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Waqas Ahmed< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Auberbinge" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/wje600" > < img src = "https://avatars.githubusercontent.com/u/25891952?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Wayne J. Earl< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Awje600" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/Wchenghui" > < img src = "https://avatars.githubusercontent.com/u/28353797?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Wchenghui< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AWchenghui" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "http://www.willwinder.com/" > < img src = "https://avatars.githubusercontent.com/u/125509?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Will Winder< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Awinder" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/YodaDaCoda" > < img src = "https://avatars.githubusercontent.com/u/365349?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > William Brockhus< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=YodaDaCoda" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3AYodaDaCoda" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/wkurniawan07" > < img src = "https://avatars.githubusercontent.com/u/7261051?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Wilson Kurniawan< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Awkurniawan07" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/wimdeblauwe" > < img src = "https://avatars.githubusercontent.com/u/1115823?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Wim Deblauwe< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Awimdeblauwe" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/woongsikchoi" > < img src = "https://avatars.githubusercontent.com/u/3905257?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Woongsik Choi< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Awoongsikchoi" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "http://xenoamess.com/" > < img src = "https://avatars.githubusercontent.com/u/17455337?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > XenoAmess< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=XenoAmess" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3AXenoAmess" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/YaroslavTER" > < img src = "https://avatars.githubusercontent.com/u/13270181?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > YaroslavTER< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AYaroslavTER" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/YYoungC" > < img src = "https://avatars.githubusercontent.com/u/55069165?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Young Chan< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=YYoungC" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3AYYoungC" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://dailyco.github.io/" > < img src = "https://avatars.githubusercontent.com/u/48382813?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > YuJin Kim< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Adailyco" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/yuridolzhenko" > < img src = "https://avatars.githubusercontent.com/u/1915205?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Yuri Dolzhenko< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ayuridolzhenko" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://www.linkedin.com/in/lazylead" > < img src = "https://avatars.githubusercontent.com/u/1651114?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Yurii Dubinka< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Adgroup" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/zolyfarkas" > < img src = "https://avatars.githubusercontent.com/u/144085?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Zoltan Farkas< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Azolyfarkas" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/Zustin" > < img src = "https://avatars.githubusercontent.com/u/87302257?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Zustin< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AZustin" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/aaronhurst-google" > < img src = "https://avatars.githubusercontent.com/u/86377278?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > aaronhurst-google< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aaaronhurst-google" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/alexmodis" > < img src = "https://avatars.githubusercontent.com/u/60091729?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > alexmodis< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aalexmodis" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "http://andreoss.sdf.org/" > < img src = "https://avatars.githubusercontent.com/u/49783909?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > andreoss< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aandreoss" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/andrey81inmd" > < img src = "https://avatars.githubusercontent.com/u/2624682?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > andrey81inmd< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=andrey81inmd" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aandrey81inmd" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/anicoara" > < img src = "https://avatars.githubusercontent.com/u/835182?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > anicoara< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aanicoara" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://www.twitter.com/arunprasathav" > < img src = "https://avatars.githubusercontent.com/u/5299114?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > arunprasathav< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aaruncollections" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/asiercamara" > < img src = "https://avatars.githubusercontent.com/u/38685011?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > asiercamara< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aasiercamara" title = "Bug reports" > 🐛< / a > < / td >
2021-09-02 11:54:15 +02:00
< td align = "center" > < a href = "https://github.com/astillich-igniti" > < img src = "https://avatars.githubusercontent.com/u/57359104?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > astillich-igniti< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=astillich-igniti" title = "Code" > 💻< / a > < / td >
2021-09-09 14:43:57 +02:00
< td align = "center" > < a href = "https://github.com/avesolovksyy" > < img src = "https://avatars.githubusercontent.com/u/46165403?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > avesolovksyy< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aavesolovksyy" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/vishva007" > < img src = "https://avatars.githubusercontent.com/u/6756036?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > avishvat< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Avishva007" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/avivmu" > < img src = "https://avatars.githubusercontent.com/u/19804341?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > avivmu< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aavivmu" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/axelbarfod1" > < img src = "https://avatars.githubusercontent.com/u/32651536?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > axelbarfod1< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aaxelbarfod1" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/b-3-n" > < img src = "https://avatars.githubusercontent.com/u/7460509?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > b-3-n< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ab-3-n" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/balbhadra9" > < img src = "https://avatars.githubusercontent.com/u/43748088?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > balbhadra9< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Abalbhadra9" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/base23de" > < img src = "https://avatars.githubusercontent.com/u/37408753?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > base23de< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Abase23de" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/bergander" > < img src = "https://avatars.githubusercontent.com/u/8858497?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > bergander< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Abergander" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/berkam" > < img src = "https://avatars.githubusercontent.com/u/26228441?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > berkam< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=berkam" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aberkam" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/breizh31" > < img src = "https://avatars.githubusercontent.com/u/15649505?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > breizh31< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Abreizh31" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/caesarkim" > < img src = "https://avatars.githubusercontent.com/u/6069184?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > caesarkim< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Acaesarkim" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/carolyujing" > < img src = "https://avatars.githubusercontent.com/u/6173449?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > carolyujing< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Acarolyujing" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/cesares-basilico" > < img src = "https://avatars.githubusercontent.com/u/14895641?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > cesares-basilico< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Acesares-basilico" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/chrite" > < img src = "https://avatars.githubusercontent.com/u/53291173?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > chrite< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Achrite" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://www.dannyvanheumen.nl/" > < img src = "https://avatars.githubusercontent.com/u/1936470?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > cobratbq< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Acobratbq" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/coladict" > < img src = "https://avatars.githubusercontent.com/u/1909837?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > coladict< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Acoladict" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/cosmoJFH" > < img src = "https://avatars.githubusercontent.com/u/19255991?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > cosmoJFH< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AcosmoJFH" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/cristalp" > < img src = "https://avatars.githubusercontent.com/u/12525759?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > cristalp< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Acristalp" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/crunsk" > < img src = "https://avatars.githubusercontent.com/u/5631441?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > crunsk< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Acrunsk" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/cwholmes" > < img src = "https://avatars.githubusercontent.com/u/14796526?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > cwholmes< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Acwholmes" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/cyberjj999" > < img src = "https://avatars.githubusercontent.com/u/51283594?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > cyberjj999< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Acyberjj999" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/cyw3" > < img src = "https://avatars.githubusercontent.com/u/11549103?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > cyw3< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Acyw3" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/d1ss0nanz" > < img src = "https://avatars.githubusercontent.com/u/7532776?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > d1ss0nanz< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ad1ss0nanz" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/danbrycefairsailcom" > < img src = "https://avatars.githubusercontent.com/u/25037396?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > danbrycefairsailcom< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Adanbrycefairsailcom" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/dariansanity" > < img src = "https://avatars.githubusercontent.com/u/28553192?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > dariansanity< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Adariansanity" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/darrenmiliband" > < img src = "https://avatars.githubusercontent.com/u/62128185?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > darrenmiliband< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Adarrenmiliband" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/davidburstrom" > < img src = "https://avatars.githubusercontent.com/u/1671931?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > davidburstrom< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Adavidburstrom" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/dbirkman-paloalto" > < img src = "https://avatars.githubusercontent.com/u/53145780?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > dbirkman-paloalto< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Adbirkman-paloalto" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/deepak-patra" > < img src = "https://avatars.githubusercontent.com/u/8747728?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > deepak-patra< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Adeepak-patra" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/apps/dependabot" > < img src = "https://avatars.githubusercontent.com/in/29110?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > dependabot[bot]< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=dependabot[bot]" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Adependabot[bot]" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/dinesh150" > < img src = "https://avatars.githubusercontent.com/u/88079095?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > dinesh150< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Adinesh150" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/diziaq" > < img src = "https://avatars.githubusercontent.com/u/6733997?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > diziaq< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Adiziaq" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/dreaminzero-cell" > < img src = "https://avatars.githubusercontent.com/u/24776498?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > dreaminpast123< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Adreaminzero-cell" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/duanyanan" > < img src = "https://avatars.githubusercontent.com/u/22003836?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > duanyanan< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aduanyanan" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/dutt-sanjay" > < img src = "https://avatars.githubusercontent.com/u/70677817?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > dutt-sanjay< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Adutt-sanjay" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/dylanleung" > < img src = "https://avatars.githubusercontent.com/u/1852360?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > dylanleung< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Adylanleung" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/dzeigler" > < img src = "https://avatars.githubusercontent.com/u/1615832?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > dzeigler< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Adzeigler" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/ekkirala" > < img src = "https://avatars.githubusercontent.com/u/44954455?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > ekkirala< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aekkirala" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/emersonmoura" > < img src = "https://avatars.githubusercontent.com/u/5419868?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > emersonmoura< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aemersonmoura" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://juejin.cn/user/1063982985642525" > < img src = "https://avatars.githubusercontent.com/u/24585054?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > fairy< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aguxiaonian" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/foxmason" > < img src = "https://avatars.githubusercontent.com/u/33361071?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > foxmason< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Afoxmason" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/frankegabor" > < img src = "https://avatars.githubusercontent.com/u/13273444?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > frankegabor< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Afrankegabor" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/fanlw0816" > < img src = "https://avatars.githubusercontent.com/u/22781995?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > frankl< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Afanlw0816" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/freafrea" > < img src = "https://avatars.githubusercontent.com/u/39403091?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > freafrea< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Afreafrea" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/fsapatin" > < img src = "https://avatars.githubusercontent.com/u/10675254?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > fsapatin< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Afsapatin" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/gracia19" > < img src = "https://avatars.githubusercontent.com/u/32557952?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > gracia19< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Agracia19" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/ief2009" > < img src = "https://avatars.githubusercontent.com/u/1955449?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > guo fei< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aief2009" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/gurmsc5" > < img src = "https://avatars.githubusercontent.com/u/26914263?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > gurmsc5< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Agurmsc5" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/gwilymatgearset" > < img src = "https://avatars.githubusercontent.com/u/43957113?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > gwilymatgearset< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=gwilymatgearset" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Agwilymatgearset" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/haigsn" > < img src = "https://avatars.githubusercontent.com/u/52993319?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > haigsn< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ahaigsn" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/hemanshu070" > < img src = "https://avatars.githubusercontent.com/u/32012651?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > hemanshu070< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ahemanshu070" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/henrik242" > < img src = "https://avatars.githubusercontent.com/u/129931?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > henrik242< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ahenrik242" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/hongpuwu" > < img src = "https://avatars.githubusercontent.com/u/19198552?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > hongpuwu< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ahongpuwu" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/hvbtup" > < img src = "https://avatars.githubusercontent.com/u/7644776?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > hvbtup< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=hvbtup" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ahvbtup" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "http://www.igniti.de/" > < img src = "https://avatars.githubusercontent.com/u/7207145?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > igniti GmbH< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aigniti-gmbh" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/ilovezfs" > < img src = "https://avatars.githubusercontent.com/u/5268928?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > ilovezfs< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ailovezfs" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/itaigilo" > < img src = "https://avatars.githubusercontent.com/u/13402361?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > itaigilo< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aitaigilo" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/jakivey32" > < img src = "https://avatars.githubusercontent.com/u/36869603?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > jakivey32< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ajakivey32" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/jbennett2091" > < img src = "https://avatars.githubusercontent.com/u/16721671?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > jbennett2091< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ajbennett2091" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/jcamerin" > < img src = "https://avatars.githubusercontent.com/u/7663252?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > jcamerin< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ajcamerin" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/jkeener1" > < img src = "https://avatars.githubusercontent.com/u/11696155?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > jkeener1< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ajkeener1" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/jmetertea" > < img src = "https://avatars.githubusercontent.com/u/33323555?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > jmetertea< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ajmetertea" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/josemanuelrolon" > < img src = "https://avatars.githubusercontent.com/u/1685807?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > josemanuelrolon< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=josemanuelrolon" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ajosemanuelrolon" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/kabroxiko" > < img src = "https://avatars.githubusercontent.com/u/20568120?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > kabroxiko< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=kabroxiko" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Akabroxiko" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/karwer" > < img src = "https://avatars.githubusercontent.com/u/862540?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > karwer< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Akarwer" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/kaulonline" > < img src = "https://avatars.githubusercontent.com/u/1171723?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > kaulonline< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Akaulonline" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/kdaemonv" > < img src = "https://avatars.githubusercontent.com/u/5984651?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > kdaemonv< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Akdaemonv" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/kenji21" > < img src = "https://avatars.githubusercontent.com/u/1105089?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > kenji21< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=kenji21" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Akenji21" title = "Bug reports" > 🐛< / a > < / td >
2021-09-02 11:14:26 +02:00
< / tr >
< tr >
2021-09-09 14:43:57 +02:00
< td align = "center" > < a href = "https://github.com/kfranic" > < img src = "https://avatars.githubusercontent.com/u/26544594?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > kfranic< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Akfranic" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/khalidkh" > < img src = "https://avatars.githubusercontent.com/u/6832066?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > khalidkh< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Akhalidkh" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/krzyk" > < img src = "https://avatars.githubusercontent.com/u/105730?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > krzyk< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Akrzyk" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/lasselindqvist" > < img src = "https://avatars.githubusercontent.com/u/13466645?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > lasselindqvist< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Alasselindqvist" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/lihuaib" > < img src = "https://avatars.githubusercontent.com/u/3365643?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > lihuaib< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Alihuaib" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/lonelyma1021" > < img src = "https://avatars.githubusercontent.com/u/22359014?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > lonelyma1021< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Alonelyma1021" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/lpeddy" > < img src = "https://avatars.githubusercontent.com/u/48803108?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > lpeddy< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Alpeddy" title = "Bug reports" > 🐛< / a > < / td >
2021-09-02 11:54:15 +02:00
< / tr >
< tr >
2021-09-09 14:43:57 +02:00
< td align = "center" > < a href = "https://github.com/lyriccoder" > < img src = "https://avatars.githubusercontent.com/u/20803206?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > lyriccoder< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Alyriccoder" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/marcelmore" > < img src = "https://avatars.githubusercontent.com/u/2975481?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > marcelmore< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amarcelmore" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/matchboxy" > < img src = "https://avatars.githubusercontent.com/u/6457674?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > matchbox< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amatchboxy" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/matthiaskraaz" > < img src = "https://avatars.githubusercontent.com/u/5954500?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > matthiaskraaz< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amatthiaskraaz" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/mkeller-ergon" > < img src = "https://avatars.githubusercontent.com/u/23031669?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > meandonlyme< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amkeller-ergon" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/mikesive" > < img src = "https://avatars.githubusercontent.com/u/4043189?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > mikesive< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amikesive" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/milossesic" > < img src = "https://avatars.githubusercontent.com/u/20756244?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > milossesic< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amilossesic" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/mriddell95" > < img src = "https://avatars.githubusercontent.com/u/25618660?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > mriddell95< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amriddell95" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/mrlzh" > < img src = "https://avatars.githubusercontent.com/u/13222791?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > mrlzh< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amrlzh" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/msloan" > < img src = "https://avatars.githubusercontent.com/u/1783723?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > msloan< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amsloan" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/mucharlaravalika" > < img src = "https://avatars.githubusercontent.com/u/32505587?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > mucharlaravalika< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amucharlaravalika" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/mvenneman" > < img src = "https://avatars.githubusercontent.com/u/1266912?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > mvenneman< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amvenneman" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/nareshl119" > < img src = "https://avatars.githubusercontent.com/u/39321364?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > nareshl119< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Anareshl119" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/nicolas-harraudeau-sonarsource" > < img src = "https://avatars.githubusercontent.com/u/40498978?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > nicolas-harraudeau-sonarsource< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Anicolas-harraudeau-sonarsource" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/noerremark" > < img src = "https://avatars.githubusercontent.com/u/4252411?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > noerremark< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Anoerremark" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/novsirion" > < img src = "https://avatars.githubusercontent.com/u/7797113?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > novsirion< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Anovsirion" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/oggboy" > < img src = "https://avatars.githubusercontent.com/u/4798818?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > oggboy< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aoggboy" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://journal.lampetty.net/archive/category/in%20English" > < img src = "https://avatars.githubusercontent.com/u/78990?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > oinume< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aoinume" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/orimarko" > < img src = "https://avatars.githubusercontent.com/u/17137249?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > orimarko< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=orimarko" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aorimarko" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/pagarwal-ignitetech" > < img src = "https://avatars.githubusercontent.com/u/30888430?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > pallavi agarwal< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Apagarwal-ignitetech" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/parksungrin" > < img src = "https://avatars.githubusercontent.com/u/29750262?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > parksungrin< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aparksungrin" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/patpatpat123" > < img src = "https://avatars.githubusercontent.com/u/43899031?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > patpatpat123< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Apatpatpat123" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/patriksevallius" > < img src = "https://avatars.githubusercontent.com/u/7291479?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > patriksevallius< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Apatriksevallius" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/pbrajesh1" > < img src = "https://avatars.githubusercontent.com/u/32388299?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > pbrajesh1< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Apbrajesh1" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/phoenix384" > < img src = "https://avatars.githubusercontent.com/u/3883662?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > phoenix384< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aphoenix384" title = "Bug reports" > 🐛< / a > < / td >
2021-09-02 11:14:26 +02:00
< td align = "center" > < a href = "https://github.com/piotrszymanski-sc" > < img src = "https://avatars.githubusercontent.com/u/71124942?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > piotrszymanski-sc< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=piotrszymanski-sc" title = "Code" > 💻< / a > < / td >
2021-09-09 14:43:57 +02:00
< td align = "center" > < a href = "https://github.com/plan3d" > < img src = "https://avatars.githubusercontent.com/u/76825073?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > plan3d< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aplan3d" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/poojasix" > < img src = "https://avatars.githubusercontent.com/u/85337280?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > poojasix< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Apoojasix" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/prabhushrikant" > < img src = "https://avatars.githubusercontent.com/u/6848200?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > prabhushrikant< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aprabhushrikant" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/pujitha8783" > < img src = "https://avatars.githubusercontent.com/u/20646357?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > pujitha8783< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Apujitha8783" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/r-r-a-j" > < img src = "https://avatars.githubusercontent.com/u/33902071?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > r-r-a-j< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ar-r-a-j" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/raghujayjunk" > < img src = "https://avatars.githubusercontent.com/u/48074475?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > raghujayjunk< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Araghujayjunk" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/rajeshveera" > < img src = "https://avatars.githubusercontent.com/u/1306514?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > rajeshveera< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Arajeshveera" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/rajeswarreddy88" > < img src = "https://avatars.githubusercontent.com/u/48543250?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > rajeswarreddy88< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Arajeswarreddy88" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/recdevs" > < img src = "https://avatars.githubusercontent.com/u/63118273?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > recdevs< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Arecdevs" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/reudismam" > < img src = "https://avatars.githubusercontent.com/u/1970407?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > reudismam< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=reudismam" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Areudismam" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/rijkt" > < img src = "https://avatars.githubusercontent.com/u/56129985?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > rijkt< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Arijkt" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/rillig-tk" > < img src = "https://avatars.githubusercontent.com/u/46376960?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > rillig-tk< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Arillig-tk" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/rmohan20" > < img src = "https://avatars.githubusercontent.com/u/58573547?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > rmohan20< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=rmohan20" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Armohan20" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://rxmicro.io/" > < img src = "https://avatars.githubusercontent.com/u/54791695?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > rxmicro< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Arxmicro" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/ryan-gustafson" > < img src = "https://avatars.githubusercontent.com/u/1227016?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > ryan-gustafson< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=ryan-gustafson" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aryan-gustafson" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/sabi0" > < img src = "https://avatars.githubusercontent.com/u/11509875?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > sabi0< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Asabi0" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/scais" > < img src = "https://avatars.githubusercontent.com/u/4539192?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > scais< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ascais" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/sebbASF" > < img src = "https://avatars.githubusercontent.com/u/16689231?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > sebbASF< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AsebbASF" title = "Bug reports" > 🐛< / a > < / td >
2021-09-02 11:14:26 +02:00
< td align = "center" > < a href = "https://github.com/sergeygorbaty" > < img src = "https://avatars.githubusercontent.com/u/14813710?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > sergeygorbaty< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=sergeygorbaty" title = "Code" > 💻< / a > < / td >
2021-09-09 14:43:57 +02:00
< td align = "center" > < a href = "https://github.com/shilko2013" > < img src = "https://avatars.githubusercontent.com/u/33313482?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > shilko2013< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ashilko2013" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/simeonKondr" > < img src = "https://avatars.githubusercontent.com/u/42644177?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > simeonKondr< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AsimeonKondr" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/snajberk" > < img src = "https://avatars.githubusercontent.com/u/3585281?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > snajberk< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Asnajberk" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/sniperrifle2004" > < img src = "https://avatars.githubusercontent.com/u/18223222?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > sniperrifle2004< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Asniperrifle2004" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/snuyanzin" > < img src = "https://avatars.githubusercontent.com/u/403174?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > snuyanzin< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Asnuyanzin" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/sratz" > < img src = "https://avatars.githubusercontent.com/u/14908423?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > sratz< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Asratz" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/stonio" > < img src = "https://avatars.githubusercontent.com/u/19952825?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > stonio< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Astonio" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/sturton" > < img src = "https://avatars.githubusercontent.com/u/1734891?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > sturton< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=sturton" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Asturton" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/sudharmohan" > < img src = "https://avatars.githubusercontent.com/u/16752281?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > sudharmohan< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Asudharmohan" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/suruchidawar" > < img src = "https://avatars.githubusercontent.com/u/30810931?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > suruchidawar< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Asuruchidawar" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/svenfinitiv" > < img src = "https://avatars.githubusercontent.com/u/5653724?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > svenfinitiv< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Asvenfinitiv" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/tashiscool" > < img src = "https://avatars.githubusercontent.com/u/1057457?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > tashiscool< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Atashiscool" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/test-git-hook" > < img src = "https://avatars.githubusercontent.com/u/49142715?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > test-git-hook< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Atest-git-hook" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/testation21" > < img src = "https://avatars.githubusercontent.com/u/47239708?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > testation21< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=testation21" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Atestation21" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/thanosa" > < img src = "https://avatars.githubusercontent.com/u/24596498?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > thanosa< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Athanosa" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/tiandiyixian" > < img src = "https://avatars.githubusercontent.com/u/27055337?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > tiandiyixian< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Atiandiyixian" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/tobwoerk" > < img src = "https://avatars.githubusercontent.com/u/11739442?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > tobwoerk< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Atobwoerk" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/tprouvot" > < img src = "https://avatars.githubusercontent.com/u/35368290?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > tprouvot< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Atprouvot" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/trentchilders" > < img src = "https://avatars.githubusercontent.com/u/6664350?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > trentchilders< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Atrentchilders" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/triandicAnt" > < img src = "https://avatars.githubusercontent.com/u/2345902?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > triandicAnt< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3AtriandicAnt" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/trishul14" > < img src = "https://avatars.githubusercontent.com/u/24551131?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > trishul14< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Atrishul14" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/xmtsui" > < img src = "https://avatars.githubusercontent.com/u/1542690?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > tsui< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Axmtsui" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/winhkey" > < img src = "https://avatars.githubusercontent.com/u/4877808?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > winhkey< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Awinhkey" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/witherspore" > < img src = "https://avatars.githubusercontent.com/u/813263?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > witherspore< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Awitherspore" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/wjljack" > < img src = "https://avatars.githubusercontent.com/u/1182478?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > wjljack< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Awjljack" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/wuchiuwong" > < img src = "https://avatars.githubusercontent.com/u/15967553?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > wuchiuwong< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Awuchiuwong" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/songxing10000" > < img src = "https://avatars.githubusercontent.com/u/10040131?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > xingsong< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Asongxing10000" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/xioayuge" > < img src = "https://avatars.githubusercontent.com/u/45328272?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > xioayuge< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Axioayuge" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/xnYi9wRezm" > < img src = "https://avatars.githubusercontent.com/u/61201892?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > xnYi9wRezm< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=xnYi9wRezm" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3AxnYi9wRezm" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/xuanuy" > < img src = "https://avatars.githubusercontent.com/u/3894777?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > xuanuy< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Axuanuy" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/xyf0921" > < img src = "https://avatars.githubusercontent.com/u/17350974?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > xyf0921< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Axyf0921" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/yalechen-cyw3" > < img src = "https://avatars.githubusercontent.com/u/34886223?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > yalechen-cyw3< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ayalechen-cyw3" title = "Bug reports" > 🐛< / a > < / td >
< / tr >
< tr >
< td align = "center" > < a href = "https://github.com/yasuharu-sato" > < img src = "https://avatars.githubusercontent.com/u/45546628?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > yasuharu-sato< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ayasuharu-sato" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/zenglian" > < img src = "https://avatars.githubusercontent.com/u/5268434?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > zenglian< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Azenglian" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/zgrzyt93" > < img src = "https://avatars.githubusercontent.com/u/54275965?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > zgrzyt93< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/commits?author=zgrzyt93" title = "Code" > 💻< / a > < a href = "https://github.com/pmd/pmd/issues?q=author%3Azgrzyt93" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/zhangxinngang" > < img src = "https://avatars.githubusercontent.com/u/6891146?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > zh3ng< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Azhangxinngang" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/yuchen1013" > < img src = "https://avatars.githubusercontent.com/u/17316917?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > zt_soft< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Ayuchen1013" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/ztt79" > < img src = "https://avatars.githubusercontent.com/u/48408552?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > ztt79< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aztt79" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/zzzzfeng" > < img src = "https://avatars.githubusercontent.com/u/8851007?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > zzzzfeng< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Azzzzfeng" title = "Bug reports" > 🐛< / a > < / td >
2021-09-02 11:54:15 +02:00
< / tr >
< tr >
2021-09-09 14:43:57 +02:00
< td align = "center" > < a href = "https://github.com/magwas" > < img src = "https://avatars.githubusercontent.com/u/756838?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > Árpád Magosányi< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Amagwas" title = "Bug reports" > 🐛< / a > < / td >
< td align = "center" > < a href = "https://github.com/clsaa" > < img src = "https://avatars.githubusercontent.com/u/32028545?v=4?s=100" width = "100px;" alt = "" / > < br / > < sub > < b > 任贵杰< / b > < / sub > < / a > < br / > < a href = "https://github.com/pmd/pmd/issues?q=author%3Aclsaa" title = "Bug reports" > 🐛< / a > < / td >
2021-08-20 16:16:31 +02:00
< / tr >
< / table >
<!-- markdownlint - restore -->
<!-- prettier - ignore - end -->
<!-- ALL - CONTRIBUTORS - LIST:END -->
This project follows the [all-contributors ](https://github.com/all-contributors/all-contributors ) specification. Contributions of any kind welcome!
2021-08-20 16:12:05 +02:00
## 📝 License
2015-11-14 17:53:52 +01:00
2021-08-20 16:12:05 +02:00
[BSD Style ](LICENSE )