Skip to content

ImportSorter eats comments #558

Closed
Closed
@jochenberger

Description

@jochenberger

The ImportSorter removes comments inside the imports block, i.e.:
before:

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 {

}

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions