From a2c5c13ef443b7202362a4a022c5e2ec616477f0 Mon Sep 17 00:00:00 2001 From: Jonathan Bernard Date: Wed, 1 Jun 2016 11:30:02 -0500 Subject: [PATCH] Disable reporting of repeat mode until a working implementation can be found. --- .../com/jdbernard/wdiwtlt/cli/CommandLineInterface.groovy | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cli/src/main/groovy/com/jdbernard/wdiwtlt/cli/CommandLineInterface.groovy b/cli/src/main/groovy/com/jdbernard/wdiwtlt/cli/CommandLineInterface.groovy index de17d24..d71b837 100644 --- a/cli/src/main/groovy/com/jdbernard/wdiwtlt/cli/CommandLineInterface.groovy +++ b/cli/src/main/groovy/com/jdbernard/wdiwtlt/cli/CommandLineInterface.groovy @@ -946,10 +946,11 @@ Configuration: private def processRepeat(String option) { switch(option) { case null: - def mode = vlcj.mediaListPlayer.mode + err 'Reading current repeat mode is not yet implemented.' + /*def mode = vlcj.mediaListPlayer.mode msg("Repeat mode is: " + mode == MediaListPlayerMode.LOOP ? 'all.' : - (mode == MediaListPlayerMode.REPEAT ? 'one.' : 'off.')) + (mode == MediaListPlayerMode.REPEAT ? 'one.' : 'off.'))*/ return case 'off':