Pepijn Schmitz
- Total activity 8
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 2
- Subscriptions 2
-
-
-
Pepijn Schmitz created a post, AnsweredWhy 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 created a post, AnsweredHow 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...