uqbar-project / arena

MMVC framework
http://arena.uqbar-project.org/
4 stars 2 forks source link

Application does not use isPending() method of Bootstrap class #34

Closed fdodino closed 7 years ago

fdodino commented 8 years ago

Forgot to ask if isPending() message returns true/false:

    @Override
    public void run() {
        ObjectTransactionManager.getTransaction();
        this.bootstrap.run();
        this.createMainWindow().open();
    }

Should be:

    @Override
    public void run() {
        ObjectTransactionManager.getTransaction();
        if (this.bootstrap.isPending()) this.bootstrap.run();
        this.createMainWindow().open();
    }

Already deployed 3.6.1 version, sorry. :(

flbulgarelli commented 8 years ago

@fdodino we forgive you (?

fdodino commented 8 years ago

:smile: