From fcc734a744409e307d334a1f8f4bfcfc0a319cb1 Mon Sep 17 00:00:00 2001 From: ulrich Date: Thu, 08 Apr 2021 19:41:43 +0000 Subject: [PATCH] Titel auf Abspielliste, Abspielliste anzeigen, Eintrag auswaehlen --- src/de/uhilger/mediaz/App.java | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/de/uhilger/mediaz/App.java b/src/de/uhilger/mediaz/App.java index 777c985..6c9b472 100644 --- a/src/de/uhilger/mediaz/App.java +++ b/src/de/uhilger/mediaz/App.java @@ -47,15 +47,16 @@ public static final String RB_AP_WWW_DATA = "appParamWWWData"; public static final String RB_AP_CTX = "appParamCtx"; public static final String RB_AP_UI = "appParamUi"; + public static final String RB_EP_LISTE = "epliste"; /** * <p>Start-Methode dieser Anwendung</p> * * @param args Kommandozeilenparameter */ - public static void main(String[] args) { + public static void main(String[] args) throws ClassNotFoundException { rb = ResourceBundle.getBundle(RB_NAME); - logger.info(new File(".").getAbsolutePath()); + logger.fine(new File(".").getAbsolutePath()); initParams = new HashMap(); for (String arg : args) { -- Gitblit v1.9.3