Nad Chel
- Total activity 38
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 14
-
Created Apply individual changes from the shelf
AnsweredIt's a pity I can't apply individual changes from the shelf, as possible in the Diff view, for instance. There's no arrow in the gutter between the versions. That feature would be really nice to have -
Edited How can I take a look at the $$$setupUI$$$() method? A decompiler doesn't show the declaration
AnsweredI'm experimenting with IntelliJ's GUI Designer. I wanted to see what code IntelliJ wrote for me. However, I noticed that while the method call is present in the constructor, the call to $$$setupUI$... -
Created @author javadoc prompt
AnsweredHi. Where is this prompt coming from? “Nad.Chel” is neither my global Git name nor my GitHub nickname (it doesn't have a dot). Thank you -
Created Unusual coverage statistics. Can you even cover an empty line, a javadoc?
AnsweredHere's what I got after running a test with coverage and then adding the stats to an existing suiteIt's the first time I see something like that. The Coverage plugin suggests that I cover:1. A clos... -
Created What does it take to "Run with coverage"?
AnsweredI can use some Maven plugin, but I'm still curious to know why IntelliJ's built-in test coverage tool doesn't work on my laptop```At least 5 arguments expected but 1 found.'C:\Users\Ñåìüÿ\AppData\L... -
Edited What language does IntelliJ's HTTP client's scripts use?
AnsweredWhat language does IntelliJ's HTTP client use? I thought it's some sort of JavaScript, but then discovered that strings here don't have `Includes()````httpGET http://localhost:8080/api/v1/hello-wor... -
Edited How do I recursively expand directory in IntelliJ?
AnsweredHow do I recursively expand a selected directory in IntelliJ? When I press Right Arrow, it expands but not recursively. Is there some shortcut? If not, can I set one? -
Edited IntelliJ IDEA doesn't recognize exceptions down the inheritance tree
AnsweredSuppose I have some `ParentException` public ParentException extends RuntimeException {} and also some `ChildException` public ChildException extends ParentException {} In that case, IntelliJ IDEA ... -
Edited "This advice advises no methods"
AnsweredHere's the working code. I have the test, and the aspect is applied (see the log message). However, the IDE doesn't think so and insists on telling me "this advice advises no methods". Looks like s... -
Created Does IntelliJ have some shortcut for changing access modifers?
AnsweredDoes IntelliJ have some shortcut for changing access modifers? For example, it would be nice if I could put the cursor at some class member and then press Alt + Up to widen access or Alt + Down to ...