/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */

// {{{ Console Stubs

/**
 * Console Stubs
 *
 * @author     Kazuhiro Kotsutsumi <kotsutsumi@xenophy.com>
 * @copyright  Copyright (c) 2006-2010 Xenophy.CO.,LTD All rights Reserved.
 * @license    http://www.opensource.org/licenses/mit-license.html MIT License
 * @version    Release: 1.0
 */
if(!window.console) {
    window.console = {
        log : Ext.emptyFn,
        dir : Ext.emptyFn,
        debug : Ext.emptyFn,
        info : Ext.emptyFn,
        warn : Ext.emptyFn,
        error : Ext.emptyFn,
        time : Ext.emptyFn,
        timeEnd : Ext.emptyFn,
        pforile : Ext.emptyFn,
        pfofileEnd : Ext.emptyFn,
        trace : Ext.emptyFn,
        group : Ext.emptyFn,
        groupEnd : Ext.emptyFn,
        dirxml : Ext.emptyFn
    };
};

// }}}

/*
 * Local variables:
 * tab-width: 4
 * c-basic-offset: 4
 * c-hanging-comment-ender-p: nil
 * End:
 */
