Hi! Does the Erlang compiler optimize code such as: f() -> case true of true -> ok end. To this? f() -> ok. I'm working with Erlang code generation in a customer's product and I wonder if I need to optimize away such code myself or not. Cheers, Adam