diff options
| author | Martin Ritchie <ritchiem@apache.org> | 2007-01-31 17:43:45 +0000 |
|---|---|---|
| committer | Martin Ritchie <ritchiem@apache.org> | 2007-01-31 17:43:45 +0000 |
| commit | cefb36a9533344d9f4e2524a8caec643ee41206a (patch) | |
| tree | 1d26c004bdb003f4cf6b1dd4774ce2631db02e31 /qpid/java | |
| parent | 8c3b06da185be947a3f8aead2f999d1a2d6ef82e (diff) | |
| download | qpid-python-cefb36a9533344d9f4e2524a8caec643ee41206a.tar.gz | |
Unused so removing
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@501920 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java')
| -rw-r--r-- | qpid/java/common/src/main/java/org/apache/qpid/util/concurrent/BooleanLatch.java | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/qpid/java/common/src/main/java/org/apache/qpid/util/concurrent/BooleanLatch.java b/qpid/java/common/src/main/java/org/apache/qpid/util/concurrent/BooleanLatch.java deleted file mode 100644 index 70a5f2dc5e..0000000000 --- a/qpid/java/common/src/main/java/org/apache/qpid/util/concurrent/BooleanLatch.java +++ /dev/null @@ -1,42 +0,0 @@ -/* - * - * Copyright (c) 2006 The Apache Software Foundation - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - */ -package org.apache.qpid.util.concurrent; - -import java.util.concurrent.CountDownLatch; -import java.util.concurrent.TimeUnit; - -/** - * @author Apache Software Foundation - */ -public class BooleanLatch extends CountDownLatch -{ - public BooleanLatch() - { - super(1); - } - - public void signal() - { - countDown(); - } - - public void await(long nanos) throws InterruptedException - { - await(nanos, TimeUnit.NANOSECONDS); - } -} |
