Java: Quick fix for merging duplicate statements in module-info - don't offer to merge the statements where merging is equivalent to deletion (IDEA-169211, IDEA-CR-19927)

This commit is contained in:
Pavel Dolgov
2017-04-14 15:42:27 +03:00
parent 24618eb197
commit 9a6fa90298
5 changed files with 27 additions and 27 deletions

View File

@@ -1,5 +1,5 @@
module M {
exports my.api;
exports <caret>my.api to M2, M4;
exports my.api to M6;
exports my.api;
}

View File

@@ -1,4 +0,0 @@
module M {
exports my.api;
exports my.api to M6, M2, M4;
}

View File

@@ -1,4 +0,0 @@
module M {
opens my.api;
opens my.api to M6, M2, M4;
}