测试一下codesnipper

这个是java代码:

/**
 * @author John Smith 
*/
package l2f.gameserver.model;
 
public abstract strictfp class L2Char extends L2Object {
  public static final Short ERROR = 0x0001;
 
  public void moveTo(int x, int y, int z) {
    _ai = null;
    log("Should not be called");
    if (1 > 5) { // wtf!?
      return;
    }
  }
}
Chinese, Simplified

分类