mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 01:50:56 +07:00
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
10 lines
143 B
Java
10 lines
143 B
Java
// "Adapt argument using 'Paths.get()'" "false"
|
|
import java.nio.file.*;
|
|
|
|
class Test {
|
|
|
|
void m() {
|
|
Files.readString("<caret>path");
|
|
}
|
|
|
|
} |