JBuilder had a nice feature to remove calls to static, void methods in one 
configurable class at *compilation*.

If you have a simple logging class:

public class Log {
   public static void log(String message) {
     System.out.println(message);
   }
}

and some pieces of code:

   ...
   Log.log("Hello world");
   ...

Turning on this option and compiling the project generated class-files 
without these calls.

Tom


At 13:01 22.03.02 +0100, you wrote:
>Feature request:
>
>Is it possbile to forsee something that detects the usage of
>System.out.println and System.err.println.
>If you work on a server project, those things realy decrease the
>performance, so before something goes in performance testing or production
>all those lines with system.out have to be removed.
>
>Jan


_______________________________________________
Eap-features mailing list
[EMAIL PROTECTED]
http://www.intellij.com/mailman/listinfo/eap-features

Reply via email to