All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.threads.NullRunnable Maven / Gradle / Ivy

package org.jboss.threads;

final class NullRunnable implements Runnable {

    private static final NullRunnable INSTANCE = new NullRunnable();

    static NullRunnable getInstance() {
        return INSTANCE;
    }

    NullRunnable() {
    }

    public void run() {
        // do nothing
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy