diff --git a/ICD.Common.Utils/IO/IcdStreamWriter.cs b/ICD.Common.Utils/IO/IcdStreamWriter.cs index 9e0da04..78b7eae 100644 --- a/ICD.Common.Utils/IO/IcdStreamWriter.cs +++ b/ICD.Common.Utils/IO/IcdStreamWriter.cs @@ -17,5 +17,10 @@ namespace ICD.Common.Utils.IO public IcdStreamWriter(StreamWriter baseStreamWriter) : base(baseStreamWriter) { } + + public void WriteLine(string value) + { + WrappedStreamWriter.WriteLine(value); + } } } \ No newline at end of file