1   package com.atlassian.util.concurrent;
2   
3   final class Util {
4       static final int WAIT = 10;
5   
6       static void pause(final int millis) {
7           try {
8               Thread.sleep(millis);
9           }
10          catch (final InterruptedException e) {
11              throw new RuntimeException(e);
12          }
13      }
14  
15      static void pause() {
16          pause(WAIT);
17      }
18  }