IDEA-228553 - separated two intention actions between different language levels not to prevent users confusing what to choose

GitOrigin-RevId: 76677d371b01ba501716756d9ea1dafa61c85404
This commit is contained in:
Ilyas Selimov
2020-05-28 19:00:35 +07:00
committed by intellij-monorepo-bot
parent 2bf945f71c
commit 3d8460f557
5 changed files with 12 additions and 22 deletions

View File

@@ -1,10 +0,0 @@
// "Wrap parameter using 'Paths.get()'" "true"
import java.nio.file.*;
class Test {
void m() {
Files.readString(Paths.get("path"));
}
}

View File

@@ -1,10 +0,0 @@
// "Wrap parameter using 'Paths.get()'" "true"
import java.nio.file.*;
class Test {
void m() {
Files.readString("<caret>path");
}
}

View File

@@ -1,4 +1,5 @@
// "Wrap parameter using 'Path.of()'" "true"
// "Wrap parameter using 'Paths.get()'" "false"
import java.nio.file.*;
class Test {