Brice
- 活动总数 40
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 0
- 订阅数 10
-
创建于 Delete break points conditions historic
已回答Is it possible to delete the old, outdated, incomprehensible, cumbersome and potentially bugged break point conditions ? -
已编辑于 [RESOLVED] Dependencies of class files
已回答Hello, is it always possible to use a library of class files instead of jar files in the recent releases ? In IntelliJ 2020 i have not problems with that, but since the last year whenever i try a n... -
创建于 Link JavaFX in a jar
已回答Hello, i would like to know how you link a local javafx in a jar. Execute the main class in IntelliJ works, and a global path to a complete javafx library too. I am not sure if i have to separate j... -
创建于 Cannot find a method
已回答Hello, intellij cannot find Point2D::interpolate() (java 13), the project/module SDK is 13. In the 2019.2.3 I can't compile a file with this method, in the 2019.1 an executable test which use the m... -
创建于 Cursor theme on Linux
已回答Hello, does Intellij use customized icons for the cursor theme on Linux ? Because in Linux Mint the default cursor theme is DMZ-White and Intellij uses always this theme (caret, panel resizing, lin... -
创建于 Theme plugin
Hello, i have created a new small theme (above Darcula), it works as expected with the preview button toggled, and it is selected and activated in the plugins, but it does not appear in the theme s... -
创建于 Rebuild package
已回答Hello, is there a way to rebuild the package of the current file without select it ? Because when you create a tests folder (marked as Tests in the project settings) and inside a package per test, ... -
创建于 Click in the structure panel
已回答On the 2017 a single click was necessary for select an item, on the 2018 a double click is required (and moreover it automatically expand the method), is there a way to come back to the previous be... -
创建于 Modules and source path
已回答Hello, i try to understand the modules, i have created my modules, each one has its own content root, its dependencies, there is no warning anywhere, all is clear or almost; but when i compile i ha... -
创建于 @NotNull and varargs
已回答Hello, why in this code : String[] l = {"A", null, "B"};f(l); private void f(@NotNull String... args){ for (String i : args) { if (i != null) System.out.println(i); else System.out.pr...