spotify / fmt-maven-plugin

Opinionated Maven Plugin that formats your Java code.
MIT License
335 stars 65 forks source link

Remove wildcard imports #98

Closed maheshkumargp closed 2 years ago

maheshkumargp commented 3 years ago

Please add a feature to remove wildcard imports

for ex : import org.apache.commons.lang3.*;

replace this with

import org.apache.commons.lang3.StringUtils;

ava1ar commented 3 years ago

@maheshkumargp this plugin doesn't do any formatting my itself - all it does it calls https://github.com/google/google-java-format with provided configuration. So, if you want to request changes to the formatting logic itself you should request this from google-java-format, not this project.