Pepijn Schmitz
- 活动总数 8
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 2
- 订阅数 2
-
-
-
Pepijn Schmitz 创建了一个帖子, 已回答Why does Structural Search find some of `(int) ($expr$ + 0.5f)`, but not all?
I'm trying to use Structural Search to replace a rounding anti-pattern with the correct pattern. I'm searching for: (int) ($expr$ + 0.5f) in order to replace it with: Math.round($expr$) Strangely, ... -
Pepijn Schmitz 创建了一个帖子, 已回答How to compile against a newer JDK's classpath?
How can I configure IntelliJ IDEA to compile a module against a newer JDK's classpath but emit class files with an older version of bytecode? Specifically, I want to compile a module against the Ja...