summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/util/DummyTimer.java
blob: e16c44b6be3c878ce934e0e0ef12fe53e52b1442 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*     ____ ____  ____ ____  ______                                     *\
**    / __// __ \/ __// __ \/ ____/    SOcos COmpiles Scala             **
**  __\_ \/ /_/ / /__/ /_/ /\_ \       (c) 2002, LAMP/EPFL              **
** /_____/\____/\___/\____/____/                                        **
\*                                                                      */

// $Id$

package scala.tools.util;

import java.util.ArrayList;

/** This class implements a timer that does nothing. */
public class DummyTimer implements Timer {

    //########################################################################
    // Public Constants

    /** The unique instance of this class. */
    public static final DummyTimer object = new DummyTimer();

    //########################################################################
    // Private Constructors

    /** Initializes this instance. */
    private DummyTimer() {}

    //########################################################################
    // Public Methods

    /** Starts a new timer. */
    public void start() {
    }

    /** Ends the current timer. */
    public void stop(String message) {
    }

    /** Drops the current timer. */
    public void drop() {
    }

    //########################################################################
}