Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/redundantUnmodifiable/afterWithComments.java
Andrey.Cherkasov 6fbd744430 RedundantUnmodifiableInspection created: IDEA-202309
GitOrigin-RevId: d5a5e1f45ba0f6e0af786ca588caaa192cd4b554
2020-09-25 11:52:07 +00:00

45 lines
988 B
Java

// "Fix all 'Redundant usage of unmodifiable collection factories' problems in file" "true"
import java.util.Collections;
class Main {
public static void main(String[] args) {
/*empty*/
/*empty too*/
/*blah blah blah*/
Collections.emptyList();
/*empty*/
/*empty too*/
/*blah blah blah*/
Collections.emptyList();
/*empty*/
/*empty too*/
/*blah blah blah*/
Collections.emptySet();
/*empty*/
/*empty too*/
/*blah blah blah*/
Collections.emptyMap();
/*empty*/
/*empty too*/
/*blah blah blah*/
Collections.emptySet();
/*empty*/
/*empty too*/
/*blah blah blah*/
Collections.emptyMap();
/*empty*/
/*empty too*/
/*blah blah blah*/
Collections.emptySet();
/*empty*/
/*empty too*/
/*blah blah blah*/
Collections.emptyMap();
}
}