AdjustableSemaphore.java 359 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.pdfg.impl.utils;

import java.util.concurrent.Semaphore;

public class AdjustableSemaphore
extends Semaphore {
    public AdjustableSemaphore(int permits, boolean fair) {
        super(permits, fair);
    }

    public void reducePermits(int reduction) {
        super.reducePermits(reduction);
    }
}