[java-intentions] Rename 'Wrap using' fixes with 'Adapt using'.

Not everything is actually wrapping. E.g., converting 'long' to 'int' via 'Math.toIntExact' is definitely not wrapping. The 'adapt' word looks more abstract and suitable for all the cases.

GitOrigin-RevId: 33e56b6e16a0362598ac8e3fc92ef2808a77dbe0
This commit is contained in:
Tagir Valeev
2022-04-06 18:13:18 +07:00
committed by intellij-monorepo-bot
parent 2d6d319d1e
commit c81981ee75
61 changed files with 63 additions and 63 deletions

View File

@@ -1,4 +1,4 @@
// "Wrap argument using 'Path.of()'" "true"
// "Adapt argument using 'Path.of()'" "true"
import java.nio.file.*;
class Test {

View File

@@ -1,4 +1,4 @@
// "Wrap argument using 'Path.of()'" "true"
// "Adapt argument using 'Path.of()'" "true"
import java.nio.file.*;
class Test {

View File

@@ -1,4 +1,4 @@
// "Wrap argument using 'Paths.get()'" "false"
// "Adapt argument using 'Paths.get()'" "false"
import java.nio.file.*;
class Test {