From 8862820bf36719d0e1a1defa19495dc2ccb4cfc1 Mon Sep 17 00:00:00 2001 From: RogueAI42 Date: Sun, 18 Jun 2017 00:46:38 +1000 Subject: [PATCH] AppVeyor --- ShiftOS.WinForms/Applications/MindBlow.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ShiftOS.WinForms/Applications/MindBlow.cs b/ShiftOS.WinForms/Applications/MindBlow.cs index 0f0df80..b8e6609 100644 --- a/ShiftOS.WinForms/Applications/MindBlow.cs +++ b/ShiftOS.WinForms/Applications/MindBlow.cs @@ -27,15 +27,15 @@ namespace ShiftOS.WinForms.Applications kc = new KeysConverter(); box = mybox; } - public override bool CanRead => true; + public override bool CanRead { get { return true; } } - public override bool CanSeek => false; + public override bool CanSeek { get { return false; } } - public override bool CanWrite => true; + public override bool CanWrite { get { return true; } } - public override long Length => box.Text.Length; + public override long Length { get { return box.Text.Length; } } - public override long Position { get => Length; set => throw new NotImplementedException(); } + public override long Position { get { return Length; } set { throw new NotImplementedException(); } } public override void Flush() {