From ad4082c5315ef9521be4c65a45bf6587635d5c7d Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Wed, 17 Apr 2024 12:16:57 -0400 Subject: [PATCH] Forgot the name for playlist --- Test/Printer.cs | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/Test/Printer.cs b/Test/Printer.cs index 6cc0dcec..4a38b763 100644 --- a/Test/Printer.cs +++ b/Test/Printer.cs @@ -140,7 +140,7 @@ namespace Test PFF item => item.PrettyPrint(), PIC item => item.PrettyPrint(), PlayJAudioFile item => item.PrettyPrint(), - //PlayJPlaylist item => item.PrettyPrint(), + PlayJPlaylist item => item.PrettyPrint(), PortableExecutable item => item.PrettyPrint(), Quantum item => item.PrettyPrint(), SGA item => item.PrettyPrint(), @@ -429,16 +429,16 @@ namespace Test return builder; } - ///// - ///// Export the item information as pretty-printed text - ///// - //private static StringBuilder PrettyPrint(this PlayJPlaylist item) - //{ - // Console.WriteLine($"{item.Description()} wrapper created successfully!"); - // var builder = new StringBuilder(); - // SabreTools.Printing.PlayJPlaylist.Print(builder, item.Model); - // return builder; - //} + /// + /// Export the item information as pretty-printed text + /// + private static StringBuilder PrettyPrint(this PlayJPlaylist item) + { + Console.WriteLine($"{item.Description()} wrapper created successfully!"); + var builder = new StringBuilder(); + SabreTools.Printing.PlayJAudioPlaylist.Print(builder, item.Model); + return builder; + } /// /// Export the item information as pretty-printed text