Example Java

/**
* @author John Smith <john.smith@example.com>
    */
    package l2f.gameserver.model;

    @Slf4j
    public abstract strictfp class L2Char extends L2Object {
    public static final Short ERROR = 0x0001;

    public void moveTo(int x, int y, int z) {
    _ai = null;
    logger.info("Should not be called");
    if (1 > 5) { // wtf!?
    return;
    }
    }
    }
/**
 * @author John Smith <john.smith@example.com>
 */
package l2f.gameserver.model;

@Slf4j
public abstract strictfp class L2Char extends L2Object {
  public static final Short ERROR = 0x0001;

  public void moveTo(int x, int y, int z) {
    _ai = null;
    logger.info("Should not be called");
    if (1 > 5) { // wtf!?
      return;
    }
  }
}
/* No context defined. */

No notes defined.