mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 20:42:52 +07:00
name suggestions: skip pluralization when component type is the same as original (IDEA-89143)
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
abstract class Path implements Iterable<Path>{}
|
||||
class Paths {
|
||||
public static Path get(String s) {return null;}
|
||||
}
|
||||
class Usage {
|
||||
public static void main(String[] args) {
|
||||
Path path = Paths.get("");
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
abstract class Path implements Iterable<Path>{}
|
||||
class Paths {
|
||||
public static Path get(String s) {return null;}
|
||||
}
|
||||
class Usage {
|
||||
public static void main(String[] args) {
|
||||
<selection>Paths.get("")</selection>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user