Stanislav Zainchkovsky
- 活动总数 6
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 2
- 订阅数 2
-
创建于 Is 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 ... -
创建于 Debugging 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...