Stanislav Zainchkovsky
- Total activity 6
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 2
- Subscriptions 2
-
Stanislav Zainchkovsky created a post, AnsweredIs there a way to disable smart paste that is injecting original class names into pasted code?
Hi! Here is an example: class A { class C { } C c; } class B { class C {} } Now, if I copy-paste the line "C c;" into class B, it will actually paste "A.C c;" which is undesired behaviour ... -
Stanislav Zainchkovsky created a post, AnsweredDebugging unhandled exceptions in java/tomcat servlets
Hi, After a year of using IDEA I still struggle trying to make exception breakpoints work for me. The problem is that tomcat catches all the exceptions that are thrown, but not handled by my code...