You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ec...@apache.org on 2015/07/17 20:53:07 UTC

[3/6] accumulo git commit: ACCUMULO-2346 update all sleeps to a specific time unit

ACCUMULO-2346 update all sleeps to a specific time unit


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/5dbb768d
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/5dbb768d
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/5dbb768d

Branch: refs/heads/master
Commit: 5dbb768d7f503d87929bbd0fcd1b8c1b827cc10a
Parents: b3692d4
Author: Eric C. Newton <er...@gmail.com>
Authored: Fri Jul 17 12:58:49 2015 -0400
Committer: Eric C. Newton <er...@gmail.com>
Committed: Fri Jul 17 12:58:49 2015 -0400

----------------------------------------------------------------------
 .../accumulo/core/util/UtilWaitThread.java      | 28 --------------------
 1 file changed, 28 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/5dbb768d/core/src/main/java/org/apache/accumulo/core/util/UtilWaitThread.java
----------------------------------------------------------------------
diff --git a/core/src/main/java/org/apache/accumulo/core/util/UtilWaitThread.java b/core/src/main/java/org/apache/accumulo/core/util/UtilWaitThread.java
deleted file mode 100644
index 816d8ed..0000000
--- a/core/src/main/java/org/apache/accumulo/core/util/UtilWaitThread.java
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You 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.accumulo.core.util;
-
-import java.util.concurrent.TimeUnit;
-
-import com.google.common.util.concurrent.Uninterruptibles;
-
-public class UtilWaitThread {
-
-  public static void sleep(long millis) {
-    Uninterruptibles.sleepUninterruptibly(millis, TimeUnit.MILLISECONDS);
-  }
-}