SquirrelJME/SquirrelJME

View on GitHub
modules/midp-lcdui/src/main/java/cc/squirreljme/runtime/lcdui/mle/__TerminateDisplay__.java

Summary

Maintainability
A
0 mins
Test Coverage
// -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
// ---------------------------------------------------------------------------
// SquirrelJME
//     Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
// ---------------------------------------------------------------------------
// SquirrelJME is under the Mozilla Public License Version 2.0.
// See license.mkd for licensing and copyright information.
// ---------------------------------------------------------------------------

package cc.squirreljme.runtime.lcdui.mle;

/**
 * Terminates the display when called.
 *
 * @since 2022/02/14
 */
final class __TerminateDisplay__
    implements AutoCloseable
{
    /**
     * {@inheritDoc}
     *
     * @since 2022/02/014
     */
    @Override
    public void close()
    {
        StaticDisplayState.terminate();
    }
}