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

com.fastasyncworldedit.bukkit.adapter.ReentrantLockWithGetOwner Maven / Gradle / Ivy

package com.fastasyncworldedit.bukkit.adapter;

import java.util.concurrent.locks.ReentrantLock;

public class ReentrantLockWithGetOwner extends ReentrantLock {

    @Override
    public Thread getOwner() {
        return super.getOwner();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy