summaryrefslogtreecommitdiff
path: root/java/common
diff options
context:
space:
mode:
authorMartin Ritchie <ritchiem@apache.org>2007-01-31 17:43:45 +0000
committerMartin Ritchie <ritchiem@apache.org>2007-01-31 17:43:45 +0000
commit3c6db912a7eec04f34c08fcd9f9d696a8f607886 (patch)
tree0be52d1e0000f90af2551a21fbe35d2742dfb721 /java/common
parent3d87ce4f6a3b0f393b8ee5caa8c6aef41755aea4 (diff)
downloadqpid-python-3c6db912a7eec04f34c08fcd9f9d696a8f607886.tar.gz
Unused so removing
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@501920 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/common')
-rw-r--r--java/common/src/main/java/org/apache/qpid/util/concurrent/BooleanLatch.java42
1 files changed, 0 insertions, 42 deletions
diff --git a/java/common/src/main/java/org/apache/qpid/util/concurrent/BooleanLatch.java b/java/common/src/main/java/org/apache/qpid/util/concurrent/BooleanLatch.java
deleted file mode 100644
index 70a5f2dc5e..0000000000
--- a/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);
- }
-}