public synchronized stopRecording()

in src/main/groovy/swing/timelog/TimeLogModel.groovy [54:59]


    public synchronized stopRecording() {
        if (!running) throw new RuntimeException("Not Running")
        setRunning(false)
        this.notifyAll()
        entries.add(new TimeLogRow(client:currentClient, start:currentStart, stop:System.currentTimeMillis()))
    }