From 27ddeddb3d0ce203a7b6ceaed0bb673b288b7ec3 Mon Sep 17 00:00:00 2001 From: erik Date: Sat, 25 Mar 2006 18:52:16 +0000 Subject: [PATCH] --- .../wamblee/crawler/kiss/guide/Program.java | 25 ++++--------------- 1 file changed, 5 insertions(+), 20 deletions(-) diff --git a/crawler/kiss/src/org/wamblee/crawler/kiss/guide/Program.java b/crawler/kiss/src/org/wamblee/crawler/kiss/guide/Program.java index 241089b1..9f63ac4e 100644 --- a/crawler/kiss/src/org/wamblee/crawler/kiss/guide/Program.java +++ b/crawler/kiss/src/org/wamblee/crawler/kiss/guide/Program.java @@ -93,42 +93,27 @@ public class Program { /** * Successfully recorded. */ - OK("Successfully recorded programs"), + OK, /** * Already recorded program. */ - DUPLICATE("Already recorded programs"), + DUPLICATE, /** * Recording conflict with another program. */ - CONFLICT("Programs in conflict with another recorded program"), + CONFLICT, /** * Program occurred in the past. */ - OLDSHOW("Programs that occurred in the past"), + OLDSHOW, /** * Program could not be recorded for technical reasons. */ - ERROR("Programs that could not be recorded for technical reasons"); - - private String _description; - - private RecordingResult(String aDescription) { - _description = aDescription; - } - - /** - * Gets the description. - * - * @return Description. - */ - public String getDescription() { - return _description; - } + ERROR; }; /** -- 2.31.1