/* * $Id: Latch.java 8077 2007-08-27 20:15:25Z aperepel $ * -------------------------------------------------------------------------------------- * Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.com * * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. */ package org.mule.util.concurrent; import edu.emory.mathcs.backport.java.util.concurrent.CountDownLatch; // @ThreadSafe public class Latch extends CountDownLatch { public Latch() { super(1); } }