1 package org.catacomb.interlish.report;
2
3
4 public class Slower {
5
6 public static void pause(int n) {
7 try {
8
9 Thread.sleep(n);
10
11 } catch (Exception ex) {
12
13 }
14 }
15
16 }