We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
The ImportSorter removes comments inside the imports block, i.e.: before:
ImportSorter
package org.example; import java.util.List; // this is very important import java.util.Set; public class Test { }
after:
package org.example; import java.util.List; import java.util.Set; public class Test { }