Brice
- Total activity 40
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 10
-
Edited [RESOLVED] Dependencies of class files
AnsweredHello, 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... -
Created Link JavaFX in a jar
AnsweredHello, 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... -
Created Cannot find a method
AnsweredHello, 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... -
Created Cursor theme on Linux
AnsweredHello, 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... -
Created 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... -
Created Rebuild package
AnsweredHello, 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, ... -
Created Click in the structure panel
AnsweredOn 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... -
Created Modules and source path
AnsweredHello, 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... -
Created @NotNull and varargs
AnsweredHello, 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... -
Created Modifiers order
AnsweredHello, is there a way to customize the modifiers 's order ? Particularly the static modifier, because i always place this modifier in first position, but if, for instance, i use the 'make public' i...