mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 18:58:31 +07:00
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:
@@ -1,5 +1,5 @@
|
||||
module M {
|
||||
exports my.api;
|
||||
exports <caret>my.api to M2, M4;
|
||||
exports my.api to M6;
|
||||
exports my.api;
|
||||
}
|
||||
@@ -1,4 +0,0 @@
|
||||
module M {
|
||||
exports my.api;
|
||||
exports my.api to M6, M2, M4;
|
||||
}
|
||||
@@ -1,4 +0,0 @@
|
||||
module M {
|
||||
opens my.api;
|
||||
opens my.api to M6, M2, M4;
|
||||
}
|
||||
Reference in New Issue
Block a user